change the readme file and delete the solution
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8e5962e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+out
+node_modules
\ No newline at end of file
diff --git a/.vscode/.browse.VC.db b/.vscode/.browse.VC.db
new file mode 100644
index 0000000..e46997b
--- /dev/null
+++ b/.vscode/.browse.VC.db
Binary files differ
diff --git a/.vscode/.browse.VC.db-wal b/.vscode/.browse.VC.db-wal
new file mode 100644
index 0000000..bfdc8f1
--- /dev/null
+++ b/.vscode/.browse.VC.db-wal
Binary files differ
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..c77b2ad
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,28 @@
+// A launch configuration that compiles the extension and then opens it inside a new window
+{
+ "version": "0.1.0",
+ "configurations": [
+ {
+ "name": "Launch Extension",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outDir": "${workspaceRoot}/out/src",
+ "preLaunchTask": "npm"
+ },
+ {
+ "name": "Launch Tests",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outDir": "${workspaceRoot}/out/test",
+ "preLaunchTask": "npm"
+ }
+ ]
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..7877e3f
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,10 @@
+// Place your settings in this file to overwrite default and user settings.
+{
+ "files.exclude": {
+ "out": false // set this to true to hide the "out" folder with the compiled JS files
+ },
+ "search.exclude": {
+ "out": true // set this to false to include "out" folder in search results
+ },
+ "typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
+}
\ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 0000000..fb7f662
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,30 @@
+// Available variables which can be used inside of strings.
+// ${workspaceRoot}: the root folder of the team
+// ${file}: the current opened file
+// ${fileBasename}: the current opened file's basename
+// ${fileDirname}: the current opened file's dirname
+// ${fileExtname}: the current opened file's extension
+// ${cwd}: the current working directory of the spawned process
+
+// A task runner that calls a custom npm script that compiles the extension.
+{
+ "version": "0.1.0",
+
+ // we want to run npm
+ "command": "npm",
+
+ // the command is a shell script
+ "isShellCommand": true,
+
+ // show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+
+ // we run the custom script "compile" as defined in package.json
+ "args": ["run", "compile", "--loglevel", "silent"],
+
+ // The tsc compiler is started in watching mode
+ "isWatching": true,
+
+ // use the standard tsc in watch mode problem matcher to find compile problems in the output.
+ "problemMatcher": "$tsc-watch"
+}
\ No newline at end of file
diff --git a/.vscodeignore b/.vscodeignore
new file mode 100644
index 0000000..93e28ff
--- /dev/null
+++ b/.vscodeignore
@@ -0,0 +1,9 @@
+.vscode/**
+typings/**
+out/test/**
+test/**
+src/**
+**/*.map
+.gitignore
+tsconfig.json
+vsc-extension-quickstart.md
diff --git a/Dfm_test/Dfm_test.sln b/Dfm_test/Dfm_test.sln
deleted file mode 100644
index 8d20762..0000000
--- a/Dfm_test/Dfm_test.sln
+++ /dev/null
@@ -1,22 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2013
-VisualStudioVersion = 12.0.21005.1
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dfm_test", "Dfm_test\Dfm_test.csproj", "{81A91AEA-FCE4-4B4E-9333-C1C534165FC9}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {81A91AEA-FCE4-4B4E-9333-C1C534165FC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {81A91AEA-FCE4-4B4E-9333-C1C534165FC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {81A91AEA-FCE4-4B4E-9333-C1C534165FC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {81A91AEA-FCE4-4B4E-9333-C1C534165FC9}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/Dfm_test/Dfm_test.v12.suo b/Dfm_test/Dfm_test.v12.suo
deleted file mode 100644
index 6e6a7a4..0000000
--- a/Dfm_test/Dfm_test.v12.suo
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/App.config b/Dfm_test/Dfm_test/App.config
deleted file mode 100644
index 8e15646..0000000
--- a/Dfm_test/Dfm_test/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
- </startup>
-</configuration>
\ No newline at end of file
diff --git a/Dfm_test/Dfm_test/Dfm_test.csproj b/Dfm_test/Dfm_test/Dfm_test.csproj
deleted file mode 100644
index 66bbd32..0000000
--- a/Dfm_test/Dfm_test/Dfm_test.csproj
+++ /dev/null
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{81A91AEA-FCE4-4B4E-9333-C1C534165FC9}</ProjectGuid>
- <OutputType>Exe</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Dfm_test</RootNamespace>
- <AssemblyName>Dfm_test</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="GitSharp, Version=0.2.0.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\GitSharp.0.3\lib\GitSharp.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="GitSharp.Core, Version=0.2.0.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\GitSharp.0.3\lib\GitSharp.Core.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="HtmlAgilityPack, Version=1.4.9.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
- <HintPath>..\packages\HtmlAgilityPack.1.4.9\lib\Net45\HtmlAgilityPack.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
- <HintPath>..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Microsoft.DocAsCode.Common, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.DocAsCode.Common.2.2.2\lib\net45\Microsoft.DocAsCode.Common.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Microsoft.DocAsCode.Dfm, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.DocAsCode.Dfm.2.2.2\lib\net45\Microsoft.DocAsCode.Dfm.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Microsoft.DocAsCode.MarkdownLite, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.DocAsCode.MarkdownLite.2.2.2\lib\net45\Microsoft.DocAsCode.MarkdownLite.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Microsoft.DocAsCode.Plugins, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.DocAsCode.Plugins.2.2.2\lib\net45\Microsoft.DocAsCode.Plugins.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Microsoft.DocAsCode.Utility, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.DocAsCode.Utility.2.2.2\lib\net45\Microsoft.DocAsCode.Utility.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Microsoft.DocAsCode.YamlSerialization, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.DocAsCode.YamlSerialization.2.2.2\lib\net45\Microsoft.DocAsCode.YamlSerialization.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
- <HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Collections.Immutable, Version=1.1.37.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\packages\System.Collections.Immutable.1.1.37\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="System.Composition.AttributedModel, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="System.Composition.Convention, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="System.Composition.Hosting, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="System.Composition.Runtime, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="System.Composition.TypedParts, Version=1.0.27.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="System.Core" />
- <Reference Include="System.Net" />
- <Reference Include="System.Web" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- <Reference Include="Tamir.SharpSSH, Version=1.1.1.13, Culture=neutral">
- <HintPath>..\packages\Tamir.SharpSSH.1.1.1.13\lib\Tamir.SharpSSH.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="Winterdom.IO.FileMap, Version=2.0.2.0, Culture=neutral, PublicKeyToken=4982617362e1edb5, processorArchitecture=MSIL">
- <HintPath>..\packages\Winterdom.IO.FileMap.2.0.2.0\lib\Winterdom.IO.FileMap.dll</HintPath>
- <Private>True</Private>
- </Reference>
- <Reference Include="YamlDotNet, Version=3.7.0.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e, processorArchitecture=MSIL">
- <HintPath>..\packages\YamlDotNet.Signed.3.7.0\lib\net35\YamlDotNet.dll</HintPath>
- <Private>True</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Program.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="App.config" />
- <None Include="packages.config" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
-</Project>
\ No newline at end of file
diff --git a/Dfm_test/Dfm_test/Program.cs b/Dfm_test/Dfm_test/Program.cs
deleted file mode 100644
index e14ec6f..0000000
--- a/Dfm_test/Dfm_test/Program.cs
+++ /dev/null
@@ -1,91 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.IO;
-
-namespace Dfm_test
-{
- class Program
- {
- static void Main(string[] args)
- {
- //byte[] mdstr = new byte[10000];
- //string mdstr = Console.ReadLine();
- //string mdinput = " ";
- try
- {
-
- /*
- // 读取文件的源路径及其读取流
- string strReadFilePath = @"E:\Docfx\test\Dfm_test\Dfm_test\README.md";
- StreamReader srReadFile = new StreamReader(strReadFilePath);
- // 读取流直至文件末尾结束
- while (!srReadFile.EndOfStream)
- {
- mdinput += srReadFile.ReadLine() ; //读取每行数据
- mdinput += "\n";
- //Console.WriteLine(strReadLine); //屏幕打印每行数据
- }
- // 关闭读取流文件
- srReadFile.Close();
-
- //string mdinput = mdstr.ToString();
-
- string mdout = Microsoft.DocAsCode.Dfm.DocfxFlavoredMarked.Markup(mdinput);
-
- Console.Write(mdout);*/
-
- while (true)
- {
- string tmp = Console.ReadLine();
- //Console.WriteLine(tmp + '\n');
- int num_of_row = System.Convert.ToInt32(tmp);
- string str = "";
- for (int i = 0; i < num_of_row; i++)
- {
- tmp = Console.ReadLine();
- //Console.WriteLine(tmp + '\n');
- str += tmp;
- str += "\r\n";
- }
- string[] stringSeparators = new string[] { "\n" };
- //Console.WriteLine(str.Split(stringSeparators,StringSplitOptions.None).Length.ToString() + '\n');
- //Console.Write(str);
- string mdout = Microsoft.DocAsCode.Dfm.DocfxFlavoredMarked.Markup(str);
- int num_of_result = mdout.Split(stringSeparators , StringSplitOptions.None).Length;
- //Console.WriteLine(num_of_result.ToString() + '\n');
- Console.Write(mdout + '\n');
- }
- /*
- Stream inputstream = Console.OpenStandardInput();
- Byte []datas = new Byte[1000];
- int length = inputstream.Read(datas , 0 , 1000);
- char[] chars = Encoding.UTF7.GetChars(datas, 0, length);
- Console.Write(chars.ToString());*/
- // string temp = "";
-
-
- /*
- while ((temp = Console.ReadLine()) != null)
- {
- str += temp;
- str += "\r\n";
- }*/
-
- //Console.Write(str);
-
- }
- catch (IOException e)
- {
- Console.WriteLine(" error");
- Console.WriteLine(e.ToString());
- Console.ReadKey();
- return;
- }
-
-
- }
- }
-}
diff --git a/Dfm_test/Dfm_test/Properties/AssemblyInfo.cs b/Dfm_test/Dfm_test/Properties/AssemblyInfo.cs
deleted file mode 100644
index 45edee9..0000000
--- a/Dfm_test/Dfm_test/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("Dfm_test")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Dfm_test")]
-[assembly: AssemblyCopyright("Copyright © 2016")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("aece08e8-4fd4-4e15-b84d-c69b92e918a2")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Dfm_test/Dfm_test/README.md b/Dfm_test/Dfm_test/README.md
deleted file mode 100644
index 301af41..0000000
--- a/Dfm_test/Dfm_test/README.md
+++ /dev/null
@@ -1,65 +0,0 @@
-# Helloworld README
-
-This is the README for your extension "Helloworld". After writing up a brief description, we recommend including the following sections.
-
-## Features
-
-Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
-
-For example if there is an image subfolder under your extension project workspace:
-
-\!\[feature X\]\(images/feature-x.png\)
-
-> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
-
-## Requirements
-
-If you have any requirements or dependencies, add a section describing those and how to install and configure them.
-
-## Extension Settings
-
-Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
-
-For example:
-
-This extension contributes the following settings:
-
-* `myExtension.enable`: enable/disable this extension
-* `myExtension.thing`: set to `blah` to do something
-
-## Known Issues
-
-Calling out known issues can help limit users opening duplicate issues against your extension.
-
-## Release Notes
-
-Users appreciate release notes as you update your extension.
-
-### 1.0.0
-
-Initial release of ...
-
-### 1.0.1
-
-Fixed issue #.
-
-### 1.1.0
-
-Added features X, Y, and Z.
-
------------------------------------------------------------------------------------------------------------
-
-## Working with Markdown
-
-**Note:** You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
-
-* Split the editor (`Cmd+\` on OSX or `Ctrl+\` on Windows and Linux)
-* Toggle preview (`Shift+CMD+V` on OSX or `Shift+Ctrl+V` on Windows and Linux)
-* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (OSX) to see a list of Markdown snippets
-
-### For more information
-
-* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
-* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
-
-**Enjoy!**
\ No newline at end of file
diff --git a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.exe b/Dfm_test/Dfm_test/bin/Debug/Dfm_test.exe
deleted file mode 100644
index 54ec49a..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.exe
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.exe.config b/Dfm_test/Dfm_test/bin/Debug/Dfm_test.exe.config
deleted file mode 100644
index 8e15646..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.exe.config
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
- </startup>
-</configuration>
\ No newline at end of file
diff --git a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.pdb b/Dfm_test/Dfm_test/bin/Debug/Dfm_test.pdb
deleted file mode 100644
index d44f822..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.pdb
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe b/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe
deleted file mode 100644
index 666c0af..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe.config b/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe.config
deleted file mode 100644
index 8e15646..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe.config
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
- </startup>
-</configuration>
\ No newline at end of file
diff --git a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe.manifest b/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe.manifest
deleted file mode 100644
index 061c9ca..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Dfm_test.vshost.exe.manifest
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
- <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
- <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
- <security>
- <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
- <requestedExecutionLevel level="asInvoker" uiAccess="false"/>
- </requestedPrivileges>
- </security>
- </trustInfo>
-</assembly>
diff --git a/Dfm_test/Dfm_test/bin/Debug/GitSharp.Core.dll b/Dfm_test/Dfm_test/bin/Debug/GitSharp.Core.dll
deleted file mode 100644
index 1aa792e..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/GitSharp.Core.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/GitSharp.dll b/Dfm_test/Dfm_test/bin/Debug/GitSharp.dll
deleted file mode 100644
index 7dbcd22..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/GitSharp.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.dll b/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.dll
deleted file mode 100644
index 0d67049..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.pdb b/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.pdb
deleted file mode 100644
index ebc0bf0..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.pdb
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.xml b/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.xml
deleted file mode 100644
index 15c8c7d..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/HtmlAgilityPack.xml
+++ /dev/null
@@ -1,2468 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>HtmlAgilityPack</name>
- </assembly>
- <members>
- <member name="T:HtmlAgilityPack.HtmlAttributeCollection">
- <summary>
- Represents a combined list and collection of HTML nodes.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Add(HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Adds supplied item to collection
- </summary>
- <param name="item"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#ICollection{HtmlAgilityPack#HtmlAttribute}#Clear">
- <summary>
- Explicit clear
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Contains(HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Retreives existence of supplied item
- </summary>
- <param name="item"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.CopyTo(HtmlAgilityPack.HtmlAttribute[],System.Int32)">
- <summary>
- Copies collection to array
- </summary>
- <param name="array"></param>
- <param name="arrayIndex"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#IEnumerable{HtmlAgilityPack#HtmlAttribute}#GetEnumerator">
- <summary>
- Get Explicit enumerator
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Explicit non-generic enumerator
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.IndexOf(HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Retrieves the index for the supplied item, -1 if not found
- </summary>
- <param name="item"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Insert(System.Int32,HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Inserts given item into collection at supplied index
- </summary>
- <param name="index"></param>
- <param name="item"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.System#Collections#Generic#ICollection{HtmlAgilityPack#HtmlAttribute}#Remove(HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Explicit collection remove
- </summary>
- <param name="item"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.RemoveAt(System.Int32)">
- <summary>
- Removes the attribute at the specified index.
- </summary>
- <param name="index">The index of the attribute to remove.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Add(System.String,System.String)">
- <summary>
- Adds a new attribute to the collection with the given values
- </summary>
- <param name="name"></param>
- <param name="value"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Append(HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Inserts the specified attribute as the last attribute in the collection.
- </summary>
- <param name="newAttribute">The attribute to insert. May not be null.</param>
- <returns>The appended attribute.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Append(System.String)">
- <summary>
- Creates and inserts a new attribute as the last attribute in the collection.
- </summary>
- <param name="name">The name of the attribute to insert.</param>
- <returns>The appended attribute.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Append(System.String,System.String)">
- <summary>
- Creates and inserts a new attribute as the last attribute in the collection.
- </summary>
- <param name="name">The name of the attribute to insert.</param>
- <param name="value">The value of the attribute to insert.</param>
- <returns>The appended attribute.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Contains(System.String)">
- <summary>
- Checks for existance of attribute with given name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Prepend(HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Inserts the specified attribute as the first node in the collection.
- </summary>
- <param name="newAttribute">The attribute to insert. May not be null.</param>
- <returns>The prepended attribute.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Remove(HtmlAgilityPack.HtmlAttribute)">
- <summary>
- Removes a given attribute from the list.
- </summary>
- <param name="attribute">The attribute to remove. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Remove(System.String)">
- <summary>
- Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed.
- </summary>
- <param name="name">The attribute's name. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.RemoveAll">
- <summary>
- Remove all attributes in the list.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.AttributesWithName(System.String)">
- <summary>
- Returns all attributes with specified name. Handles case insentivity
- </summary>
- <param name="attributeName">Name of the attribute</param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Remove">
- <summary>
- Removes all attributes from the collection
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttributeCollection.Clear">
- <summary>
- Clears the attribute collection
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttributeCollection.Item(System.String)">
- <summary>
- Gets a given attribute from the list using its name.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttributeCollection.Count">
- <summary>
- Gets the number of elements actually contained in the list.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttributeCollection.IsReadOnly">
- <summary>
- Gets readonly status of colelction
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttributeCollection.Item(System.Int32)">
- <summary>
- Gets the attribute at the specified index.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlCommentNode">
- <summary>
- Represents an HTML comment.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlNode">
- <summary>
- Represents an HTML node.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CreateNavigator">
- <summary>
- Creates a new XPathNavigator object for navigating this HTML node.
- </summary>
- <returns>An XPathNavigator object. The XPathNavigator is positioned on the node from which the method was called. It is not positioned on the root of the document.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CreateRootNavigator">
- <summary>
- Creates an XPathNavigator using the root of this document.
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.SelectNodes(System.String)">
- <summary>
- Selects a list of nodes matching the <see cref="P:HtmlAgilityPack.HtmlNode.XPath"/> expression.
- </summary>
- <param name="xpath">The XPath expression.</param>
- <returns>An <see cref="T:HtmlAgilityPack.HtmlNodeCollection"/> containing a collection of nodes matching the <see cref="P:HtmlAgilityPack.HtmlNode.XPath"/> query, or <c>null</c> if no node matched the XPath expression.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.SelectSingleNode(System.String)">
- <summary>
- Selects the first XmlNode that matches the XPath expression.
- </summary>
- <param name="xpath">The XPath expression. May not be null.</param>
- <returns>The first <see cref="T:HtmlAgilityPack.HtmlNode"/> that matches the XPath query or a null reference if no matching node was found.</returns>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNode.HtmlNodeTypeNameComment">
- <summary>
- Gets the name of a comment node. It is actually defined as '#comment'.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNode.HtmlNodeTypeNameDocument">
- <summary>
- Gets the name of the document node. It is actually defined as '#document'.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNode.HtmlNodeTypeNameText">
- <summary>
- Gets the name of a text node. It is actually defined as '#text'.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNode.ElementsFlags">
- <summary>
- Gets a collection of flags that define specific behaviors for specific element nodes.
- The table contains a DictionaryEntry list with the lowercase tag name as the Key, and a combination of HtmlElementFlags as the Value.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.#cctor">
- <summary>
- Initialize HtmlNode. Builds a list of all tags that have special allowances
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.#ctor(HtmlAgilityPack.HtmlNodeType,HtmlAgilityPack.HtmlDocument,System.Int32)">
- <summary>
- Initializes HtmlNode, providing type, owner and where it exists in a collection
- </summary>
- <param name="type"></param>
- <param name="ownerdocument"></param>
- <param name="index"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CanOverlapElement(System.String)">
- <summary>
- Determines if an element node can be kept overlapped.
- </summary>
- <param name="name">The name of the element node to check. May not be <c>null</c>.</param>
- <returns>true if the name is the name of an element node that can be kept overlapped, <c>false</c> otherwise.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CreateNode(System.String)">
- <summary>
- Creates an HTML node from a string representing literal HTML.
- </summary>
- <param name="html">The HTML text.</param>
- <returns>The newly created node instance.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.IsCDataElement(System.String)">
- <summary>
- Determines if an element node is a CDATA element node.
- </summary>
- <param name="name">The name of the element node to check. May not be null.</param>
- <returns>true if the name is the name of a CDATA element node, false otherwise.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.IsClosedElement(System.String)">
- <summary>
- Determines if an element node is closed.
- </summary>
- <param name="name">The name of the element node to check. May not be null.</param>
- <returns>true if the name is the name of a closed element node, false otherwise.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.IsEmptyElement(System.String)">
- <summary>
- Determines if an element node is defined as empty.
- </summary>
- <param name="name">The name of the element node to check. May not be null.</param>
- <returns>true if the name is the name of an empty element node, false otherwise.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.IsOverlappedClosingElement(System.String)">
- <summary>
- Determines if a text corresponds to the closing tag of an node that can be kept overlapped.
- </summary>
- <param name="text">The text to check. May not be null.</param>
- <returns>true or false.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Ancestors">
- <summary>
- Returns a collection of all ancestor nodes of this element.
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Ancestors(System.String)">
- <summary>
- Get Ancestors with matching name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.AncestorsAndSelf">
- <summary>
- Returns a collection of all ancestor nodes of this element.
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.AncestorsAndSelf(System.String)">
- <summary>
- Gets all anscestor nodes and the current node
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.AppendChild(HtmlAgilityPack.HtmlNode)">
- <summary>
- Adds the specified node to the end of the list of children of this node.
- </summary>
- <param name="newChild">The node to add. May not be null.</param>
- <returns>The node added.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.AppendChildren(HtmlAgilityPack.HtmlNodeCollection)">
- <summary>
- Adds the specified node to the end of the list of children of this node.
- </summary>
- <param name="newChildren">The node list to add. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.ChildAttributes(System.String)">
- <summary>
- Gets all Attributes with name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Clone">
- <summary>
- Creates a duplicate of the node
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CloneNode(System.String)">
- <summary>
- Creates a duplicate of the node and changes its name at the same time.
- </summary>
- <param name="newName">The new name of the cloned node. May not be <c>null</c>.</param>
- <returns>The cloned node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CloneNode(System.String,System.Boolean)">
- <summary>
- Creates a duplicate of the node and changes its name at the same time.
- </summary>
- <param name="newName">The new name of the cloned node. May not be null.</param>
- <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself.</param>
- <returns>The cloned node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CloneNode(System.Boolean)">
- <summary>
- Creates a duplicate of the node.
- </summary>
- <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself.</param>
- <returns>The cloned node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CopyFrom(HtmlAgilityPack.HtmlNode)">
- <summary>
- Creates a duplicate of the node and the subtree under it.
- </summary>
- <param name="node">The node to duplicate. May not be <c>null</c>.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.CopyFrom(HtmlAgilityPack.HtmlNode,System.Boolean)">
- <summary>
- Creates a duplicate of the node.
- </summary>
- <param name="node">The node to duplicate. May not be <c>null</c>.</param>
- <param name="deep">true to recursively clone the subtree under the specified node, false to clone only the node itself.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.DescendantNodes">
- <summary>
- Gets all Descendant nodes for this node and each of child nodes
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.DescendantNodesAndSelf">
- <summary>
- Returns a collection of all descendant nodes of this element, in document order
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Descendants">
- <summary>
- Gets all Descendant nodes in enumerated list
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Descendants(System.String)">
- <summary>
- Get all descendant nodes with matching name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.DescendantsAndSelf">
- <summary>
- Returns a collection of all descendant nodes of this element, in document order
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.DescendantsAndSelf(System.String)">
- <summary>
- Gets all descendant nodes including this node
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Element(System.String)">
- <summary>
- Gets first generation child node matching name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Elements(System.String)">
- <summary>
- Gets matching first generation child nodes matching name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.GetAttributeValue(System.String,System.String)">
- <summary>
- Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned.
- </summary>
- <param name="name">The name of the attribute to get. May not be <c>null</c>.</param>
- <param name="def">The default value to return if not found.</param>
- <returns>The value of the attribute if found, the default value if not found.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.GetAttributeValue(System.String,System.Int32)">
- <summary>
- Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned.
- </summary>
- <param name="name">The name of the attribute to get. May not be <c>null</c>.</param>
- <param name="def">The default value to return if not found.</param>
- <returns>The value of the attribute if found, the default value if not found.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.GetAttributeValue(System.String,System.Boolean)">
- <summary>
- Helper method to get the value of an attribute of this node. If the attribute is not found, the default value will be returned.
- </summary>
- <param name="name">The name of the attribute to get. May not be <c>null</c>.</param>
- <param name="def">The default value to return if not found.</param>
- <returns>The value of the attribute if found, the default value if not found.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.InsertAfter(HtmlAgilityPack.HtmlNode,HtmlAgilityPack.HtmlNode)">
- <summary>
- Inserts the specified node immediately after the specified reference node.
- </summary>
- <param name="newChild">The node to insert. May not be <c>null</c>.</param>
- <param name="refChild">The node that is the reference node. The newNode is placed after the refNode.</param>
- <returns>The node being inserted.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.InsertBefore(HtmlAgilityPack.HtmlNode,HtmlAgilityPack.HtmlNode)">
- <summary>
- Inserts the specified node immediately before the specified reference node.
- </summary>
- <param name="newChild">The node to insert. May not be <c>null</c>.</param>
- <param name="refChild">The node that is the reference node. The newChild is placed before this node.</param>
- <returns>The node being inserted.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.PrependChild(HtmlAgilityPack.HtmlNode)">
- <summary>
- Adds the specified node to the beginning of the list of children of this node.
- </summary>
- <param name="newChild">The node to add. May not be <c>null</c>.</param>
- <returns>The node added.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.PrependChildren(HtmlAgilityPack.HtmlNodeCollection)">
- <summary>
- Adds the specified node list to the beginning of the list of children of this node.
- </summary>
- <param name="newChildren">The node list to add. May not be <c>null</c>.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.Remove">
- <summary>
- Removes node from parent collection
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.RemoveAll">
- <summary>
- Removes all the children and/or attributes of the current node.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.RemoveAllChildren">
- <summary>
- Removes all the children of the current node.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.RemoveChild(HtmlAgilityPack.HtmlNode)">
- <summary>
- Removes the specified child node.
- </summary>
- <param name="oldChild">The node being removed. May not be <c>null</c>.</param>
- <returns>The node removed.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.RemoveChild(HtmlAgilityPack.HtmlNode,System.Boolean)">
- <summary>
- Removes the specified child node.
- </summary>
- <param name="oldChild">The node being removed. May not be <c>null</c>.</param>
- <param name="keepGrandChildren">true to keep grand children of the node, false otherwise.</param>
- <returns>The node removed.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.ReplaceChild(HtmlAgilityPack.HtmlNode,HtmlAgilityPack.HtmlNode)">
- <summary>
- Replaces the child node oldChild with newChild node.
- </summary>
- <param name="newChild">The new node to put in the child list.</param>
- <param name="oldChild">The node being replaced in the list.</param>
- <returns>The node replaced.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.SetAttributeValue(System.String,System.String)">
- <summary>
- Helper method to set the value of an attribute of this node. If the attribute is not found, it will be created automatically.
- </summary>
- <param name="name">The name of the attribute to set. May not be null.</param>
- <param name="value">The value for the attribute.</param>
- <returns>The corresponding attribute instance.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo(System.IO.TextWriter)">
- <summary>
- Saves all the children of the node to the specified TextWriter.
- </summary>
- <param name="outText">The TextWriter to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.WriteContentTo">
- <summary>
- Saves all the children of the node to a string.
- </summary>
- <returns>The saved string.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.IO.TextWriter)">
- <summary>
- Saves the current node to the specified TextWriter.
- </summary>
- <param name="outText">The TextWriter to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.WriteTo(System.Xml.XmlWriter)">
- <summary>
- Saves the current node to the specified XmlWriter.
- </summary>
- <param name="writer">The XmlWriter to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNode.WriteTo">
- <summary>
- Saves the current node to a string.
- </summary>
- <returns>The saved string.</returns>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.Attributes">
- <summary>
- Gets the collection of HTML attributes for this node. May not be null.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.ChildNodes">
- <summary>
- Gets all the children of the node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.Closed">
- <summary>
- Gets a value indicating if this node has been closed or not.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.ClosingAttributes">
- <summary>
- Gets the collection of HTML attributes for the closing tag. May not be null.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.FirstChild">
- <summary>
- Gets the first child of the node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.HasAttributes">
- <summary>
- Gets a value indicating whether the current node has any attributes.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.HasChildNodes">
- <summary>
- Gets a value indicating whether this node has any child nodes.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.HasClosingAttributes">
- <summary>
- Gets a value indicating whether the current node has any attributes on the closing tag.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.Id">
- <summary>
- Gets or sets the value of the 'id' HTML attribute. The document must have been parsed using the OptionUseIdAttribute set to true.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.InnerHtml">
- <summary>
- Gets or Sets the HTML between the start and end tags of the object.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.InnerText">
- <summary>
- Gets or Sets the text between the start and end tags of the object.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.LastChild">
- <summary>
- Gets the last child of the node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.Line">
- <summary>
- Gets the line number of this node in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.LinePosition">
- <summary>
- Gets the column number of this node in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.Name">
- <summary>
- Gets or sets this node's name.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.NextSibling">
- <summary>
- Gets the HTML node immediately following this element.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.NodeType">
- <summary>
- Gets the type of this node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.OriginalName">
- <summary>
- The original unaltered name of the tag
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.OuterHtml">
- <summary>
- Gets or Sets the object and its content in HTML.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.OwnerDocument">
- <summary>
- Gets the <see cref="T:HtmlAgilityPack.HtmlDocument"/> to which this node belongs.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.ParentNode">
- <summary>
- Gets the parent of this node (for nodes that can have parents).
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.PreviousSibling">
- <summary>
- Gets the node immediately preceding this node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.StreamPosition">
- <summary>
- Gets the stream position of this node in the document, relative to the start of the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNode.XPath">
- <summary>
- Gets a valid XPath string that points to this node
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlCommentNode.Comment">
- <summary>
- Gets or Sets the comment text of the node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlCommentNode.InnerHtml">
- <summary>
- Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlCommentNode.OuterHtml">
- <summary>
- Gets or Sets the object and its content in HTML.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlDocument">
- <summary>
- Represents a complete HTML document.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.DetectEncodingAndLoad(System.String)">
- <summary>
- Detects the encoding of an HTML document from a file first, and then loads the file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.DetectEncodingAndLoad(System.String,System.Boolean)">
- <summary>
- Detects the encoding of an HTML document from a file first, and then loads the file.
- </summary>
- <param name="path">The complete file path to be read. May not be null.</param>
- <param name="detectEncoding">true to detect encoding, false otherwise.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.DetectEncoding(System.String)">
- <summary>
- Detects the encoding of an HTML file.
- </summary>
- <param name="path">Path for the file containing the HTML document to detect. May not be null.</param>
- <returns>The detected encoding.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String)">
- <summary>
- Loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Boolean)">
- <summary>
- Loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read. May not be null.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Text.Encoding)">
- <summary>
- Loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read. May not be null.</param>
- <param name="encoding">The character encoding to use. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Text.Encoding,System.Boolean)">
- <summary>
- Loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read. May not be null.</param>
- <param name="encoding">The character encoding to use. May not be null.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.String,System.Text.Encoding,System.Boolean,System.Int32)">
- <summary>
- Loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read. May not be null.</param>
- <param name="encoding">The character encoding to use. May not be null.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- <param name="buffersize">The minimum buffer size.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Save(System.String)">
- <summary>
- Saves the mixed document to the specified file.
- </summary>
- <param name="filename">The location of the file where you want to save the document.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Save(System.String,System.Text.Encoding)">
- <summary>
- Saves the mixed document to the specified file.
- </summary>
- <param name="filename">The location of the file where you want to save the document. May not be null.</param>
- <param name="encoding">The character encoding to use. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateNavigator">
- <summary>
- Creates a new XPathNavigator object for navigating this HTML document.
- </summary>
- <returns>An XPathNavigator object. The XPathNavigator is positioned on the root of the document.</returns>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionAddDebuggingAttributes">
- <summary>
- Adds Debugging attributes to node. Default is false.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionAutoCloseOnEnd">
- <summary>
- Defines if closing for non closed nodes must be done at the end or directly in the document.
- Setting this to true can actually change how browsers render the page. Default is false.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionCheckSyntax">
- <summary>
- Defines if non closed nodes will be checked at the end of parsing. Default is true.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionComputeChecksum">
- <summary>
- Defines if a checksum must be computed for the document while parsing. Default is false.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionDefaultStreamEncoding">
- <summary>
- Defines the default stream encoding to use. Default is System.Text.Encoding.Default.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionExtractErrorSourceText">
- <summary>
- Defines if source text must be extracted while parsing errors.
- If the document has a lot of errors, or cascading errors, parsing performance can be dramatically affected if set to true.
- Default is false.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionExtractErrorSourceTextMaxLength">
- <summary>
- Defines the maximum length of source text or parse errors. Default is 100.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionFixNestedTags">
- <summary>
- Defines if LI, TR, TH, TD tags must be partially fixed when nesting errors are detected. Default is false.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputAsXml">
- <summary>
- Defines if output must conform to XML, instead of HTML.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputOptimizeAttributeValues">
- <summary>
- Defines if attribute value output must be optimized (not bound with double quotes if it is possible). Default is false.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputOriginalCase">
- <summary>
- Defines if name must be output with it's original case. Useful for asp.net tags and attributes
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionOutputUpperCase">
- <summary>
- Defines if name must be output in uppercase. Default is false.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionReadEncoding">
- <summary>
- Defines if declared encoding must be read from the document.
- Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node.
- Default is true.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionStopperNodeName">
- <summary>
- Defines the name of a node that will throw the StopperNodeException when found as an end node. Default is null.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionUseIdAttribute">
- <summary>
- Defines if the 'id' attribute must be specifically used. Default is true.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlDocument.OptionWriteEmptyNodes">
- <summary>
- Defines if empty nodes must be written as closed during output. Default is false.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.#ctor">
- <summary>
- Creates an instance of an HTML document.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.GetXmlName(System.String)">
- <summary>
- Gets a valid XML name.
- </summary>
- <param name="name">Any text.</param>
- <returns>A string that is a valid XML name.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.HtmlEncode(System.String)">
- <summary>
- Applies HTML encoding to a specified string.
- </summary>
- <param name="html">The input string to encode. May not be null.</param>
- <returns>The encoded string.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.IsWhiteSpace(System.Int32)">
- <summary>
- Determines if the specified character is considered as a whitespace character.
- </summary>
- <param name="c">The character to check.</param>
- <returns>true if if the specified character is considered as a whitespace character.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateAttribute(System.String)">
- <summary>
- Creates an HTML attribute with the specified name.
- </summary>
- <param name="name">The name of the attribute. May not be null.</param>
- <returns>The new HTML attribute.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateAttribute(System.String,System.String)">
- <summary>
- Creates an HTML attribute with the specified name.
- </summary>
- <param name="name">The name of the attribute. May not be null.</param>
- <param name="value">The value of the attribute.</param>
- <returns>The new HTML attribute.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateComment">
- <summary>
- Creates an HTML comment node.
- </summary>
- <returns>The new HTML comment node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateComment(System.String)">
- <summary>
- Creates an HTML comment node with the specified comment text.
- </summary>
- <param name="comment">The comment text. May not be null.</param>
- <returns>The new HTML comment node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateElement(System.String)">
- <summary>
- Creates an HTML element node with the specified name.
- </summary>
- <param name="name">The qualified name of the element. May not be null.</param>
- <returns>The new HTML node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateTextNode">
- <summary>
- Creates an HTML text node.
- </summary>
- <returns>The new HTML text node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.CreateTextNode(System.String)">
- <summary>
- Creates an HTML text node with the specified text.
- </summary>
- <param name="text">The text of the node. May not be null.</param>
- <returns>The new HTML text node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.DetectEncoding(System.IO.Stream)">
- <summary>
- Detects the encoding of an HTML stream.
- </summary>
- <param name="stream">The input stream. May not be null.</param>
- <returns>The detected encoding.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.DetectEncoding(System.IO.TextReader)">
- <summary>
- Detects the encoding of an HTML text provided on a TextReader.
- </summary>
- <param name="reader">The TextReader used to feed the HTML. May not be null.</param>
- <returns>The detected encoding.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.DetectEncodingHtml(System.String)">
- <summary>
- Detects the encoding of an HTML text.
- </summary>
- <param name="html">The input html text. May not be null.</param>
- <returns>The detected encoding.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.GetElementbyId(System.String)">
- <summary>
- Gets the HTML node with the specified 'id' attribute value.
- </summary>
- <param name="id">The attribute id to match. May not be null.</param>
- <returns>The HTML node with the matching id or null if not found.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream)">
- <summary>
- Loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Boolean)">
- <summary>
- Loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Text.Encoding)">
- <summary>
- Loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean)">
- <summary>
- Loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
- <summary>
- Loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
- <param name="buffersize">The minimum buffer size.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Load(System.IO.TextReader)">
- <summary>
- Loads the HTML document from the specified TextReader.
- </summary>
- <param name="reader">The TextReader used to feed the HTML data into the document. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.LoadHtml(System.String)">
- <summary>
- Loads the HTML document from the specified string.
- </summary>
- <param name="html">String containing the HTML document to load. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.Stream)">
- <summary>
- Saves the HTML document to the specified stream.
- </summary>
- <param name="outStream">The stream to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.Stream,System.Text.Encoding)">
- <summary>
- Saves the HTML document to the specified stream.
- </summary>
- <param name="outStream">The stream to which you want to save. May not be null.</param>
- <param name="encoding">The character encoding to use. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.StreamWriter)">
- <summary>
- Saves the HTML document to the specified StreamWriter.
- </summary>
- <param name="writer">The StreamWriter to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Save(System.IO.TextWriter)">
- <summary>
- Saves the HTML document to the specified TextWriter.
- </summary>
- <param name="writer">The TextWriter to which you want to save. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlDocument.Save(System.Xml.XmlWriter)">
- <summary>
- Saves the HTML document to the specified XmlWriter.
- </summary>
- <param name="writer">The XmlWriter to which you want to save.</param>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.CheckSum">
- <summary>
- Gets the document CRC32 checksum if OptionComputeChecksum was set to true before parsing, 0 otherwise.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.DeclaredEncoding">
- <summary>
- Gets the document's declared encoding.
- Declared encoding is determined using the meta http-equiv="content-type" content="text/html;charset=XXXXX" html node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.DocumentNode">
- <summary>
- Gets the root node of the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.Encoding">
- <summary>
- Gets the document's output encoding.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.ParseErrors">
- <summary>
- Gets a list of parse errors found in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.Remainder">
- <summary>
- Gets the remaining text.
- Will always be null if OptionStopperNodeName is null.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.RemainderOffset">
- <summary>
- Gets the offset of Remainder in the original Html text.
- If OptionStopperNodeName is null, this will return the length of the original Html text.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlDocument.StreamEncoding">
- <summary>
- Gets the document's stream encoding.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlElementFlag">
- <summary>
- Flags that describe the behavior of an Element node.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlElementFlag.CData">
- <summary>
- The node is a CDATA node.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlElementFlag.Empty">
- <summary>
- The node is empty. META or IMG are example of such nodes.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlElementFlag.Closed">
- <summary>
- The node will automatically be closed during parsing.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlElementFlag.CanOverlap">
- <summary>
- The node can overlap.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlNodeCollection">
- <summary>
- Represents a combined list and collection of HTML nodes.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.#ctor(HtmlAgilityPack.HtmlNode)">
- <summary>
- Initialize the HtmlNodeCollection with the base parent node
- </summary>
- <param name="parentnode">The base node of the collection</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Add(HtmlAgilityPack.HtmlNode)">
- <summary>
- Add node to the collection
- </summary>
- <param name="node"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Clear">
- <summary>
- Clears out the collection of HtmlNodes. Removes each nodes reference to parentnode, nextnode and prevnode
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Contains(HtmlAgilityPack.HtmlNode)">
- <summary>
- Gets existence of node in collection
- </summary>
- <param name="item"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.CopyTo(HtmlAgilityPack.HtmlNode[],System.Int32)">
- <summary>
- Copy collection to array
- </summary>
- <param name="array"></param>
- <param name="arrayIndex"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.System#Collections#Generic#IEnumerable{HtmlAgilityPack#HtmlNode}#GetEnumerator">
- <summary>
- Get Enumerator
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Get Explicit Enumerator
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.IndexOf(HtmlAgilityPack.HtmlNode)">
- <summary>
- Get index of node
- </summary>
- <param name="item"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Insert(System.Int32,HtmlAgilityPack.HtmlNode)">
- <summary>
- Insert node at index
- </summary>
- <param name="index"></param>
- <param name="node"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Remove(HtmlAgilityPack.HtmlNode)">
- <summary>
- Remove node
- </summary>
- <param name="item"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.RemoveAt(System.Int32)">
- <summary>
- Remove <see cref="T:HtmlAgilityPack.HtmlNode"/> at index
- </summary>
- <param name="index"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.FindFirst(HtmlAgilityPack.HtmlNodeCollection,System.String)">
- <summary>
- Get first instance of node in supplied collection
- </summary>
- <param name="items"></param>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Append(HtmlAgilityPack.HtmlNode)">
- <summary>
- Add node to the end of the collection
- </summary>
- <param name="node"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.FindFirst(System.String)">
- <summary>
- Get first instance of node with name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.GetNodeIndex(HtmlAgilityPack.HtmlNode)">
- <summary>
- Get index of node
- </summary>
- <param name="node"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Prepend(HtmlAgilityPack.HtmlNode)">
- <summary>
- Add node to the beginning of the collection
- </summary>
- <param name="node"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Remove(System.Int32)">
- <summary>
- Remove node at index
- </summary>
- <param name="index"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Replace(System.Int32,HtmlAgilityPack.HtmlNode)">
- <summary>
- Replace node at index
- </summary>
- <param name="index"></param>
- <param name="node"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Descendants">
- <summary>
- Get all node descended from this collection
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Descendants(System.String)">
- <summary>
- Get all node descended from this collection with matching name
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Elements">
- <summary>
- Gets all first generation elements in collection
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Elements(System.String)">
- <summary>
- Gets all first generation elements matching name
- </summary>
- <param name="name"></param>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeCollection.Nodes">
- <summary>
- All first generation nodes in collection
- </summary>
- <returns></returns>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeCollection.Item(HtmlAgilityPack.HtmlNode)">
- <summary>
- Gets a given node from the list.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeCollection.Item(System.String)">
- <summary>
- Get node with tag name
- </summary>
- <param name="nodeName"></param>
- <returns></returns>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeCollection.Count">
- <summary>
- Gets the number of elements actually contained in the list.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeCollection.IsReadOnly">
- <summary>
- Is collection read only
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeCollection.Item(System.Int32)">
- <summary>
- Gets the node at the specified index.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlNodeType">
- <summary>
- Represents the type of a node.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNodeType.Document">
- <summary>
- The root of a document.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNodeType.Element">
- <summary>
- An HTML element.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNodeType.Comment">
- <summary>
- An HTML comment.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlNodeType.Text">
- <summary>
- A text node is always the child of an element or a document node.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlParseError">
- <summary>
- Represents a parsing error found during document parsing.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlParseError.Code">
- <summary>
- Gets the type of error.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlParseError.Line">
- <summary>
- Gets the line number of this error in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlParseError.LinePosition">
- <summary>
- Gets the column number of this error in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlParseError.Reason">
- <summary>
- Gets a description for the error.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlParseError.SourceText">
- <summary>
- Gets the the full text of the line containing the error.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlParseError.StreamPosition">
- <summary>
- Gets the absolute stream position of this error in the document, relative to the start of the document.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlParseErrorCode">
- <summary>
- Represents the type of parsing error.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlParseErrorCode.TagNotClosed">
- <summary>
- A tag was not closed.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlParseErrorCode.TagNotOpened">
- <summary>
- A tag was not opened.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlParseErrorCode.CharsetMismatch">
- <summary>
- There is a charset mismatch between stream and declared (META) encoding.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlParseErrorCode.EndTagNotRequired">
- <summary>
- An end tag was not required.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlParseErrorCode.EndTagInvalidHere">
- <summary>
- An end tag is invalid at this position.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlTextNode">
- <summary>
- Represents an HTML text node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlTextNode.InnerHtml">
- <summary>
- Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlTextNode.OuterHtml">
- <summary>
- Gets or Sets the object and its content in HTML.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlTextNode.Text">
- <summary>
- Gets or Sets the text of the node.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlWeb">
- <summary>
- A utility class to get HTML document from HTTP.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.CreateInstance(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Type)">
- <summary>
- Creates an instance of the given type from the specified Internet resource.
- </summary>
- <param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
- <param name="xsltArgs">An <see cref="T:System.Xml.Xsl.XsltArgumentList"/> containing the namespace-qualified arguments used as input to the transform.</param>
- <param name="type">The requested type.</param>
- <returns>An newly created instance.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.CreateInstance(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Type,System.String)">
- <summary>
- Creates an instance of the given type from the specified Internet resource.
- </summary>
- <param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
- <param name="xsltArgs">An <see cref="T:System.Xml.Xsl.XsltArgumentList"/> containing the namespace-qualified arguments used as input to the transform.</param>
- <param name="type">The requested type.</param>
- <param name="xmlPath">A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes.</param>
- <returns>An newly created instance.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.LoadHtmlAsXml(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlTextWriter)">
- <summary>
- Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation.
- </summary>
- <param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
- <param name="xsltArgs">An XsltArgumentList containing the namespace-qualified arguments used as input to the transform.</param>
- <param name="writer">The XmlTextWriter to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.LoadHtmlAsXml(System.String,System.String,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlTextWriter,System.String)">
- <summary>
- Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter, after an XSLT transformation.
- </summary>
- <param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp". May not be null.</param>
- <param name="xsltUrl">The URL that specifies the XSLT stylesheet to load.</param>
- <param name="xsltArgs">An XsltArgumentList containing the namespace-qualified arguments used as input to the transform.</param>
- <param name="writer">The XmlTextWriter to which you want to save.</param>
- <param name="xmlPath">A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes.</param>
- </member>
- <member name="F:HtmlAgilityPack.HtmlWeb.PostResponse">
- <summary>
- Occurs after an HTTP request has been executed.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlWeb.PreHandleDocument">
- <summary>
- Occurs before an HTML document is handled.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.HtmlWeb.PreRequest">
- <summary>
- Occurs before an HTTP request is executed.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.GetContentTypeForExtension(System.String,System.String)">
- <summary>
- Gets the MIME content type for a given path extension.
- </summary>
- <param name="extension">The input path extension.</param>
- <param name="def">The default content type to return if any error occurs.</param>
- <returns>The path extension's MIME content type.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.GetExtensionForContentType(System.String,System.String)">
- <summary>
- Gets the path extension for a given MIME content type.
- </summary>
- <param name="contentType">The input MIME content type.</param>
- <param name="def">The default path extension to return if any error occurs.</param>
- <returns>The MIME content type's path extension.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.CreateInstance(System.String,System.Type)">
- <summary>
- Creates an instance of the given type from the specified Internet resource.
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="type">The requested type.</param>
- <returns>An newly created instance.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String)">
- <summary>
- Gets an HTML document from an Internet resource and saves it to the specified file.
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="path">The location of the file where you want to save the document.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String,System.Net.WebProxy,System.Net.NetworkCredential)">
- <summary>
- Gets an HTML document from an Internet resource and saves it to the specified file. - Proxy aware
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="path">The location of the file where you want to save the document.</param>
- <param name="proxy"></param>
- <param name="credentials"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String,System.String)">
- <summary>
- Gets an HTML document from an Internet resource and saves it to the specified file.
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="path">The location of the file where you want to save the document.</param>
- <param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Get(System.String,System.String,System.Net.WebProxy,System.Net.NetworkCredential,System.String)">
- <summary>
- Gets an HTML document from an Internet resource and saves it to the specified file. Understands Proxies
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="path">The location of the file where you want to save the document.</param>
- <param name="credentials"></param>
- <param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
- <param name="proxy"></param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.GetCachePath(System.Uri)">
- <summary>
- Gets the cache file path for a specified url.
- </summary>
- <param name="uri">The url fo which to retrieve the cache path. May not be null.</param>
- <returns>The cache file path.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String)">
- <summary>
- Gets an HTML document from an Internet resource.
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <returns>A new HTML document.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String,System.String,System.Int32,System.String,System.String)">
- <summary>
- Gets an HTML document from an Internet resource.
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="proxyHost">Host to use for Proxy</param>
- <param name="proxyPort">Port the Proxy is on</param>
- <param name="userId">User Id for Authentication</param>
- <param name="password">Password for Authentication</param>
- <returns>A new HTML document.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String,System.String)">
- <summary>
- Loads an HTML document from an Internet resource.
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
- <returns>A new HTML document.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.Load(System.String,System.String,System.Net.WebProxy,System.Net.NetworkCredential)">
- <summary>
- Loads an HTML document from an Internet resource.
- </summary>
- <param name="url">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="method">The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND.</param>
- <param name="proxy">Proxy to use with this request</param>
- <param name="credentials">Credentials to use when authenticating</param>
- <returns>A new HTML document.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWeb.LoadHtmlAsXml(System.String,System.Xml.XmlTextWriter)">
- <summary>
- Loads an HTML document from an Internet resource and saves it to the specified XmlTextWriter.
- </summary>
- <param name="htmlUrl">The requested URL, such as "http://Myserver/Mypath/Myfile.asp".</param>
- <param name="writer">The XmlTextWriter to which you want to save to.</param>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.AutoDetectEncoding">
- <summary>
- Gets or Sets a value indicating if document encoding must be automatically detected.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.OverrideEncoding">
- <summary>
- Gets or sets the Encoding used to override the response stream from any web request
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.CacheOnly">
- <summary>
- Gets or Sets a value indicating whether to get document only from the cache.
- If this is set to true and document is not found in the cache, nothing will be loaded.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.CachePath">
- <summary>
- Gets or Sets the cache path. If null, no caching mechanism will be used.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.FromCache">
- <summary>
- Gets a value indicating if the last document was retrieved from the cache.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.RequestDuration">
- <summary>
- Gets the last request duration in milliseconds.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.ResponseUri">
- <summary>
- Gets the URI of the Internet resource that actually responded to the request.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.StatusCode">
- <summary>
- Gets the last request status.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.StreamBufferSize">
- <summary>
- Gets or Sets the size of the buffer used for memory operations.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.UseCookies">
- <summary>
- Gets or Sets a value indicating if cookies will be stored.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.UserAgent">
- <summary>
- Gets or Sets the User Agent HTTP 1.1 header sent on any webrequest
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlWeb.UsingCache">
- <summary>
- Gets or Sets a value indicating whether the caching mechanisms should be used or not.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlWeb.PostResponseHandler">
- <summary>
- Represents the method that will handle the PostResponse event.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlWeb.PreHandleDocumentHandler">
- <summary>
- Represents the method that will handle the PreHandleDocument event.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlWeb.PreRequestHandler">
- <summary>
- Represents the method that will handle the PreRequest event.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlWebException">
- <summary>
- Represents an exception thrown by the HtmlWeb utility class.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlWebException.#ctor(System.String)">
- <summary>
- Creates an instance of the HtmlWebException.
- </summary>
- <param name="message">The exception's message.</param>
- </member>
- <member name="T:HtmlAgilityPack.MixedCodeDocumentCodeFragment">
- <summary>
- Represents a fragment of code in a mixed code document.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.MixedCodeDocumentFragment">
- <summary>
- Represents a base class for fragments in a mixed code document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.FragmentText">
- <summary>
- Gets the fragement text.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.FragmentType">
- <summary>
- Gets the type of fragment.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.Line">
- <summary>
- Gets the line number of the fragment.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.LinePosition">
- <summary>
- Gets the line position (column) of the fragment.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragment.StreamPosition">
- <summary>
- Gets the fragment position in the document's stream.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentCodeFragment.Code">
- <summary>
- Gets the fragment code text.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.MixedCodeDocumentFragmentList">
- <summary>
- Represents a list of mixed code fragments.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Gets an enumerator that can iterate through the fragment list.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.Append(HtmlAgilityPack.MixedCodeDocumentFragment)">
- <summary>
- Appends a fragment to the list of fragments.
- </summary>
- <param name="newFragment">The fragment to append. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.GetEnumerator">
- <summary>
- Gets an enumerator that can iterate through the fragment list.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.Prepend(HtmlAgilityPack.MixedCodeDocumentFragment)">
- <summary>
- Prepends a fragment to the list of fragments.
- </summary>
- <param name="newFragment">The fragment to append. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.Remove(HtmlAgilityPack.MixedCodeDocumentFragment)">
- <summary>
- Remove a fragment from the list of fragments. If this fragment was not in the list, an exception will be raised.
- </summary>
- <param name="fragment">The fragment to remove. May not be null.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.RemoveAll">
- <summary>
- Remove all fragments from the list.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.RemoveAt(System.Int32)">
- <summary>
- Remove a fragment from the list of fragments, using its index in the list.
- </summary>
- <param name="index">The index of the fragment to remove.</param>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.Doc">
- <summary>
- Gets the Document
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.Count">
- <summary>
- Gets the number of fragments contained in the list.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.Item(System.Int32)">
- <summary>
- Gets a fragment from the list using its index.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator">
- <summary>
- Represents a fragment enumerator.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.MoveNext">
- <summary>
- Advances the enumerator to the next element of the collection.
- </summary>
- <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.Reset">
- <summary>
- Sets the enumerator to its initial position, which is before the first element in the collection.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.Current">
- <summary>
- Gets the current element in the collection.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentFragmentList.MixedCodeDocumentFragmentEnumerator.System#Collections#IEnumerator#Current">
- <summary>
- Gets the current element in the collection.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.MixedCodeDocumentFragmentType">
- <summary>
- Represents the type of fragment in a mixed code document.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.MixedCodeDocumentFragmentType.Code">
- <summary>
- The fragment contains code.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.MixedCodeDocumentFragmentType.Text">
- <summary>
- The fragment contains text.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.MixedCodeDocumentTextFragment">
- <summary>
- Represents a fragment of text in a mixed code document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocumentTextFragment.Text">
- <summary>
- Gets the fragment text.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.Crc32">
- <summary>
- A utility class to compute CRC32.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.Crc32.CRC32Bytes(System.Byte[])">
- <summary>
- Compute a checksum for a given array of bytes.
- </summary>
- <param name="bytes">The array of bytes to compute the checksum for.</param>
- <returns>The computed checksum.</returns>
- </member>
- <member name="M:HtmlAgilityPack.Crc32.CRC32String(System.String)">
- <summary>
- Compute a checksum for a given string.
- </summary>
- <param name="text">The string to compute the checksum for.</param>
- <returns>The computed checksum.</returns>
- </member>
- <member name="T:HtmlAgilityPack.HtmlAttribute">
- <summary>
- Represents an HTML attribute.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttribute.CompareTo(System.Object)">
- <summary>
- Compares the current instance with another attribute. Comparison is based on attributes' name.
- </summary>
- <param name="obj">An attribute to compare with this instance.</param>
- <returns>A 32-bit signed integer that indicates the relative order of the names comparison.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttribute.Clone">
- <summary>
- Creates a duplicate of this attribute.
- </summary>
- <returns>The cloned attribute.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlAttribute.Remove">
- <summary>
- Removes this attribute from it's parents collection
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.Line">
- <summary>
- Gets the line number of this attribute in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.LinePosition">
- <summary>
- Gets the column number of this attribute in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.Name">
- <summary>
- Gets the qualified name of the attribute.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.OriginalName">
- <summary>
- Name of attribute with original case
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.OwnerDocument">
- <summary>
- Gets the HTML document to which this attribute belongs.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.OwnerNode">
- <summary>
- Gets the HTML node to which this attribute belongs.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.QuoteType">
- <summary>
- Specifies what type of quote the data should be wrapped in
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.StreamPosition">
- <summary>
- Gets the stream position of this attribute in the document, relative to the start of the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.Value">
- <summary>
- Gets or sets the value of the attribute.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlAttribute.XPath">
- <summary>
- Gets a valid XPath string that points to this Attribute
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.AttributeValueQuote">
- <summary>
- An Enum representing different types of Quotes used for surrounding attribute values
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.AttributeValueQuote.SingleQuote">
- <summary>
- A single quote mark '
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.AttributeValueQuote.DoubleQuote">
- <summary>
- A double quote mark "
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlEntity">
- <summary>
- A utility class to replace special characters by entities and vice-versa.
- Follows HTML 4.0 specification found at http://www.w3.org/TR/html4/sgml/entities.html
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlEntity.DeEntitize(System.String)">
- <summary>
- Replace known entities by characters.
- </summary>
- <param name="text">The source text.</param>
- <returns>The result text.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlEntity.Entitize(HtmlAgilityPack.HtmlNode)">
- <summary>
- Clone and entitize an HtmlNode. This will affect attribute values and nodes' text. It will also entitize all child nodes.
- </summary>
- <param name="node">The node to entitize.</param>
- <returns>An entitized cloned node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlEntity.Entitize(System.String)">
- <summary>
- Replace characters above 127 by entities.
- </summary>
- <param name="text">The source text.</param>
- <returns>The result text.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlEntity.Entitize(System.String,System.Boolean)">
- <summary>
- Replace characters above 127 by entities.
- </summary>
- <param name="text">The source text.</param>
- <param name="useNames">If set to false, the function will not use known entities name. Default is true.</param>
- <returns>The result text.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlEntity.Entitize(System.String,System.Boolean,System.Boolean)">
- <summary>
- Replace characters above 127 by entities.
- </summary>
- <param name="text">The source text.</param>
- <param name="useNames">If set to false, the function will not use known entities name. Default is true.</param>
- <param name="entitizeQuotAmpAndLtGt">If set to true, the [quote], [ampersand], [lower than] and [greather than] characters will be entitized.</param>
- <returns>The result text</returns>
- </member>
- <member name="P:HtmlAgilityPack.HtmlEntity.EntityName">
- <summary>
- A collection of entities indexed by name.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlEntity.EntityValue">
- <summary>
- A collection of entities indexed by value.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.HtmlNodeNavigator">
- <summary>
- Represents an HTML navigator on an HTML document seen as a data store.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.Stream)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Boolean)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Text.Encoding)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the stream.</param>
- <param name="buffersize">The minimum buffer size.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.IO.TextReader)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a TextReader.
- </summary>
- <param name="reader">The TextReader used to feed the HTML data into the document.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Boolean)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Text.Encoding)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="encoding">The character encoding to use.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Text.Encoding,System.Boolean)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.#ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32)">
- <summary>
- Initializes a new instance of the HtmlNavigator and loads an HTML document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- <param name="buffersize">The minimum buffer size.</param>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.Clone">
- <summary>
- Creates a new HtmlNavigator positioned at the same node as this HtmlNavigator.
- </summary>
- <returns>A new HtmlNavigator object positioned at the same node as the original HtmlNavigator.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.GetAttribute(System.String,System.String)">
- <summary>
- Gets the value of the HTML attribute with the specified LocalName and NamespaceURI.
- </summary>
- <param name="localName">The local name of the HTML attribute.</param>
- <param name="namespaceURI">The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation.</param>
- <returns>The value of the specified HTML attribute. String.Empty or null if a matching attribute is not found or if the navigator is not positioned on an element node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.GetNamespace(System.String)">
- <summary>
- Returns the value of the namespace node corresponding to the specified local name.
- Always returns string.Empty for the HtmlNavigator implementation.
- </summary>
- <param name="name">The local name of the namespace node.</param>
- <returns>Always returns string.Empty for the HtmlNavigator implementation.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.IsSamePosition(System.Xml.XPath.XPathNavigator)">
- <summary>
- Determines whether the current HtmlNavigator is at the same position as the specified HtmlNavigator.
- </summary>
- <param name="other">The HtmlNavigator that you want to compare against.</param>
- <returns>true if the two navigators have the same position, otherwise, false.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveTo(System.Xml.XPath.XPathNavigator)">
- <summary>
- Moves to the same position as the specified HtmlNavigator.
- </summary>
- <param name="other">The HtmlNavigator positioned on the node that you want to move to.</param>
- <returns>true if successful, otherwise false. If false, the position of the navigator is unchanged.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToAttribute(System.String,System.String)">
- <summary>
- Moves to the HTML attribute with matching LocalName and NamespaceURI.
- </summary>
- <param name="localName">The local name of the HTML attribute.</param>
- <param name="namespaceURI">The namespace URI of the attribute. Unsupported with the HtmlNavigator implementation.</param>
- <returns>true if the HTML attribute is found, otherwise, false. If false, the position of the navigator does not change.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirst">
- <summary>
- Moves to the first sibling of the current node.
- </summary>
- <returns>true if the navigator is successful moving to the first sibling node, false if there is no first sibling or if the navigator is currently positioned on an attribute node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstAttribute">
- <summary>
- Moves to the first HTML attribute.
- </summary>
- <returns>true if the navigator is successful moving to the first HTML attribute, otherwise, false.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstChild">
- <summary>
- Moves to the first child of the current node.
- </summary>
- <returns>true if there is a first child node, otherwise false.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope)">
- <summary>
- Moves the XPathNavigator to the first namespace node of the current element.
- Always returns false for the HtmlNavigator implementation.
- </summary>
- <param name="scope">An XPathNamespaceScope value describing the namespace scope.</param>
- <returns>Always returns false for the HtmlNavigator implementation.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToId(System.String)">
- <summary>
- Moves to the node that has an attribute of type ID whose value matches the specified string.
- </summary>
- <param name="id">A string representing the ID value of the node to which you want to move. This argument does not need to be atomized.</param>
- <returns>true if the move was successful, otherwise false. If false, the position of the navigator is unchanged.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNamespace(System.String)">
- <summary>
- Moves the XPathNavigator to the namespace node with the specified local name.
- Always returns false for the HtmlNavigator implementation.
- </summary>
- <param name="name">The local name of the namespace node.</param>
- <returns>Always returns false for the HtmlNavigator implementation.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNext">
- <summary>
- Moves to the next sibling of the current node.
- </summary>
- <returns>true if the navigator is successful moving to the next sibling node, false if there are no more siblings or if the navigator is currently positioned on an attribute node. If false, the position of the navigator is unchanged.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNextAttribute">
- <summary>
- Moves to the next HTML attribute.
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope)">
- <summary>
- Moves the XPathNavigator to the next namespace node.
- Always returns falsefor the HtmlNavigator implementation.
- </summary>
- <param name="scope">An XPathNamespaceScope value describing the namespace scope.</param>
- <returns>Always returns false for the HtmlNavigator implementation.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToParent">
- <summary>
- Moves to the parent of the current node.
- </summary>
- <returns>true if there is a parent node, otherwise false.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToPrevious">
- <summary>
- Moves to the previous sibling of the current node.
- </summary>
- <returns>true if the navigator is successful moving to the previous sibling node, false if there is no previous sibling or if the navigator is currently positioned on an attribute node.</returns>
- </member>
- <member name="M:HtmlAgilityPack.HtmlNodeNavigator.MoveToRoot">
- <summary>
- Moves to the root node to which the current node belongs.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.BaseURI">
- <summary>
- Gets the base URI for the current node.
- Always returns string.Empty in the case of HtmlNavigator implementation.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.CurrentDocument">
- <summary>
- Gets the current HTML document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.CurrentNode">
- <summary>
- Gets the current HTML node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.HasAttributes">
- <summary>
- Gets a value indicating whether the current node has child nodes.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.HasChildren">
- <summary>
- Gets a value indicating whether the current node has child nodes.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.IsEmptyElement">
- <summary>
- Gets a value indicating whether the current node is an empty element.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.LocalName">
- <summary>
- Gets the name of the current HTML node without the namespace prefix.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.Name">
- <summary>
- Gets the qualified name of the current node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.NamespaceURI">
- <summary>
- Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node.
- Always returns string.Empty in the case of HtmlNavigator implementation.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.NameTable">
- <summary>
- Gets the <see cref="T:System.Xml.XmlNameTable"/> associated with this implementation.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.NodeType">
- <summary>
- Gets the type of the current node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.Prefix">
- <summary>
- Gets the prefix associated with the current node.
- Always returns string.Empty in the case of HtmlNavigator implementation.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.Value">
- <summary>
- Gets the text value of the current node.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.HtmlNodeNavigator.XmlLang">
- <summary>
- Gets the xml:lang scope for the current node.
- Always returns string.Empty in the case of HtmlNavigator implementation.
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.PermissionHelper">
- <summary>
- Wraps getting AppDomain permissions
- </summary>
- </member>
- <member name="T:HtmlAgilityPack.IPermissionHelper">
- <summary>
- An interface for getting permissions of the running application
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.IPermissionHelper.GetIsRegistryAvailable">
- <summary>
- Checks to see if Registry access is available to the caller
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.IPermissionHelper.GetIsDnsAvailable">
- <summary>
- Checks to see if DNS information is available to the caller
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.PermissionHelper.GetIsRegistryAvailable">
- <summary>
- Checks to see if Registry access is available to the caller
- </summary>
- <returns></returns>
- </member>
- <member name="M:HtmlAgilityPack.PermissionHelper.GetIsDnsAvailable">
- <summary>
- Checks to see if DNS information is available to the caller
- </summary>
- <returns></returns>
- </member>
- <member name="T:HtmlAgilityPack.MixedCodeDocument">
- <summary>
- Represents a document with mixed code and text. ASP, ASPX, JSP, are good example of such documents.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.MixedCodeDocument.TokenCodeEnd">
- <summary>
- Gets or sets the token representing code end.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.MixedCodeDocument.TokenCodeStart">
- <summary>
- Gets or sets the token representing code start.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.MixedCodeDocument.TokenDirective">
- <summary>
- Gets or sets the token representing code directive.
- </summary>
- </member>
- <member name="F:HtmlAgilityPack.MixedCodeDocument.TokenResponseWrite">
- <summary>
- Gets or sets the token representing response write directive.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.#ctor">
- <summary>
- Creates a mixed code document instance.
- </summary>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.CreateCodeFragment">
- <summary>
- Create a code fragment instances.
- </summary>
- <returns>The newly created code fragment instance.</returns>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.CreateTextFragment">
- <summary>
- Create a text fragment instances.
- </summary>
- <returns>The newly created text fragment instance.</returns>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream)">
- <summary>
- Loads a mixed code document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream,System.Boolean)">
- <summary>
- Loads a mixed code document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream,System.Text.Encoding)">
- <summary>
- Loads a mixed code document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean)">
- <summary>
- Loads a mixed code document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
- <summary>
- Loads a mixed code document from a stream.
- </summary>
- <param name="stream">The input stream.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- <param name="buffersize">The minimum buffer size.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String)">
- <summary>
- Loads a mixed code document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Boolean)">
- <summary>
- Loads a mixed code document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Text.Encoding)">
- <summary>
- Loads a mixed code document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="encoding">The character encoding to use.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Text.Encoding,System.Boolean)">
- <summary>
- Loads a mixed code document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.String,System.Text.Encoding,System.Boolean,System.Int32)">
- <summary>
- Loads a mixed code document from a file.
- </summary>
- <param name="path">The complete file path to be read.</param>
- <param name="encoding">The character encoding to use.</param>
- <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
- <param name="buffersize">The minimum buffer size.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Load(System.IO.TextReader)">
- <summary>
- Loads the mixed code document from the specified TextReader.
- </summary>
- <param name="reader">The TextReader used to feed the HTML data into the document.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.LoadHtml(System.String)">
- <summary>
- Loads a mixed document from a text
- </summary>
- <param name="html">The text to load.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.Stream)">
- <summary>
- Saves the mixed document to the specified stream.
- </summary>
- <param name="outStream">The stream to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.Stream,System.Text.Encoding)">
- <summary>
- Saves the mixed document to the specified stream.
- </summary>
- <param name="outStream">The stream to which you want to save.</param>
- <param name="encoding">The character encoding to use.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.String)">
- <summary>
- Saves the mixed document to the specified file.
- </summary>
- <param name="filename">The location of the file where you want to save the document.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.String,System.Text.Encoding)">
- <summary>
- Saves the mixed document to the specified file.
- </summary>
- <param name="filename">The location of the file where you want to save the document.</param>
- <param name="encoding">The character encoding to use.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.StreamWriter)">
- <summary>
- Saves the mixed document to the specified StreamWriter.
- </summary>
- <param name="writer">The StreamWriter to which you want to save.</param>
- </member>
- <member name="M:HtmlAgilityPack.MixedCodeDocument.Save(System.IO.TextWriter)">
- <summary>
- Saves the mixed document to the specified TextWriter.
- </summary>
- <param name="writer">The TextWriter to which you want to save.</param>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocument.Code">
- <summary>
- Gets the code represented by the mixed code document seen as a template.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocument.CodeFragments">
- <summary>
- Gets the list of code fragments in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocument.Fragments">
- <summary>
- Gets the list of all fragments in the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocument.StreamEncoding">
- <summary>
- Gets the encoding of the stream used to read the document.
- </summary>
- </member>
- <member name="P:HtmlAgilityPack.MixedCodeDocument.TextFragments">
- <summary>
- Gets the list of text fragments in the document.
- </summary>
- </member>
- </members>
-</doc>
diff --git a/Dfm_test/Dfm_test/bin/Debug/ICSharpCode.SharpZipLib.dll b/Dfm_test/Dfm_test/bin/Debug/ICSharpCode.SharpZipLib.dll
deleted file mode 100644
index fe643eb..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/ICSharpCode.SharpZipLib.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Common.dll b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Common.dll
deleted file mode 100644
index b9a10fd..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Common.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Common.xml b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Common.xml
deleted file mode 100644
index a2dd147..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Common.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>Microsoft.DocAsCode.Common</name>
- </assembly>
- <members>
- <member name="T:Microsoft.DocAsCode.Common.ReplayLogListener">
- <summary>
- Replay log on flushing.
- </summary>
- </member>
- </members>
-</doc>
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Dfm.dll b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Dfm.dll
deleted file mode 100644
index 7cbbd04..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Dfm.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Dfm.xml b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Dfm.xml
deleted file mode 100644
index 1c40565..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Dfm.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>Microsoft.DocAsCode.Dfm</name>
- </assembly>
- <members>
- <member name="T:Microsoft.DocAsCode.Dfm.FlatNameCodeSnippetExtractor">
- <summary>
- Flat name extrator works for snippet name exists in both start and end line representations
- E.g., comment representation needs snippet name exists in both start and end line comment
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.Dfm.RecursiveNameCodeSnippetExtractor">
- <summary>
- Recursive name extrator works for snippet name only exists in start line representation
- E.g., C# region representation only has snippet name in start line representation
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.Dfm.MarkdownValidators.MarkdownTagValidationRule.TagNames">
- <summary>
- The names of tag.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.Dfm.MarkdownValidators.MarkdownTagValidationRule.Behavior">
- <summary>
- Define tag's behavior.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.Dfm.MarkdownValidators.MarkdownTagValidationRule.MessageFormatter">
- <summary>
- The message formatter for warning and error. '{0}' is name of tag, '{1}' is the full tag.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.Dfm.MarkdownValidators.MarkdownTagValidationRule.CustomValidatorContractName">
- <summary>
- The contract name for custom validator <see cref="T:Microsoft.DocAsCode.Plugins.ICustomMarkdownTagValidator"/>.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.Dfm.MarkdownValidators.MarkdownTagValidationRule.OpeningTagOnly">
- <summary>
- Only validate opening tag.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.Dfm.DfmTextInlineRule.Text">
- <summary>
- Override the one in MarkdownLite, difference is:
- If there is a `@` following `.`, `,`, `;`, `:`, `!`, `?` or whitespace, exclude it as it is a xref
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.Dfm.DfmXrefAutoLinkInlineRule">
- <summary>
- Xref auto link syntax:
- 1. `<xref:uid>`
- 2. `<xref:"uid with space">`
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.Dfm.DfmXrefShortcutInlineRule">
- <summary>
- XREF regex:
- 1. If content after `@` is wrapped by `'` or `"`, it contains any character including white space
- 2. If content after `@` is not wrapped by `'` or `"`,
- It must start with word character `a-z` or `A-Z`
- It ends when
- a. line ends
- b. meets whitespaces
- c. line ends with `.`, `,`, `;`, `:`, `!`, `?` and `~`
- d. meets 2 times or more `.`, `,`, `;`, `:`, `!`, `?` and `~`
- </summary>
- </member>
- </members>
-</doc>
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.MarkdownLite.dll b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.MarkdownLite.dll
deleted file mode 100644
index bf4f830..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.MarkdownLite.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.MarkdownLite.xml b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.MarkdownLite.xml
deleted file mode 100644
index 5b42e6e..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.MarkdownLite.xml
+++ /dev/null
@@ -1,324 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>Microsoft.DocAsCode.MarkdownLite</name>
- </assembly>
- <members>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.HtmlRenderer">
- <summary>
- The html renderer for gfm.
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownContext">
- <summary>
- The context for markdown parser.
- It should be immutable.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownContext.Rules">
- <summary>
- Get the rule set for current context.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownContext.Variables">
- <summary>
- Get the variables.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownContext.CreateContext(System.Collections.Immutable.ImmutableDictionary{System.String,System.Object})">
- <summary>
- Create a new context with different variables.
- </summary>
- <param name="variables">The new variables.</param>
- <returns>a new instance of <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownContext"/></returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine">
- <summary>
- Markdown engine
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine.Parser">
- <summary>
- Get the parser (it can read markdown text, then return markdown tokens).
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine.Renderer">
- <summary>
- Get the renderer (it can read markdown token, then return text e.g. html).
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine.RewriteEngine">
- <summary>
- Get the rewriter (it can read markdown tokens, then rewrite them and return).
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine.TokenTreeValidator">
- <summary>
- Get the token tree validator.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine.Mark(Microsoft.DocAsCode.MarkdownLite.SourceInfo,Microsoft.DocAsCode.MarkdownLite.IMarkdownContext)">
- <summary>
- Mark markdown text.
- </summary>
- <param name="markdown">The markdown text.</param>
- <param name="context">The markdown context contains rules.</param>
- <param name="sourceInfo">The line info for markdown text.</param>
- <returns>Rendered text.</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine.Markup(System.String,System.String)">
- <summary>
- Mark markdown text.
- </summary>
- <param name="markdown">The markdown text.</param>
- <param name="file">The file of markdown.</param>
- <returns>Rendered text.</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownParser">
- <summary>
- Markdown parser.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownParser.Context">
- <summary>
- Get the current markdown context.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownParser.Links">
- <summary>
- Get the No. links.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownParser.Options">
- <summary>
- Get the <see cref="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownParser.Options"/>.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownParser.SwitchContext(Microsoft.DocAsCode.MarkdownLite.IMarkdownContext)">
- <summary>
- Switch the markdown context.
- </summary>
- <param name="context">New context.</param>
- <returns>The old context.</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownParser.Tokenize(Microsoft.DocAsCode.MarkdownLite.SourceInfo)">
- <summary>
- Tokenize the markdown text.
- </summary>
- <param name="markdown">The markdown text.</param>
- <returns>A list of <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownToken"/>.</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownRenderer">
- <summary>
- Markdown renderer.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownRenderer.Engine">
- <summary>
- Get the markdown engine.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownRenderer.Links">
- <summary>
- Get the No. links.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownRenderer.Options">
- <summary>
- Get the <see cref="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownRenderer.Options"/>.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownRenderer.Render(Microsoft.DocAsCode.MarkdownLite.IMarkdownToken)">
- <summary>
- Render a token.
- </summary>
- <param name="token">The token to render.</param>
- <returns>The text.</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownRewritable`1">
- <summary>
- Markdown rewritable (for object contains <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownToken"/>).
- </summary>
- <typeparam name="T">The type of implement this interface.</typeparam>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownRewritable`1.Rewrite(Microsoft.DocAsCode.MarkdownLite.IMarkdownRewriteEngine)">
- <summary>
- Rewrite object with <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownRewriteEngine"/>
- </summary>
- <param name="rewriteEngine">The rewrite engine</param>
- <returns>The rewritten object.</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownRewriteEngine">
- <summary>
- Markdown rewrite engine.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownRewriteEngine.Engine">
- <summary>
- Get markdown engine.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownRewriteEngine.Rewrite(System.Collections.Immutable.ImmutableArray{Microsoft.DocAsCode.MarkdownLite.IMarkdownToken})">
- <summary>
- Rewrite markdown tokens.
- </summary>
- <param name="tokens">Source markdown tokens.</param>
- <returns>Rewritten markdown tokens.</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownRule">
- <summary>
- Markdown rule.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownRule.Name">
- <summary>
- Get the name of rule.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownRule.TryMatch(Microsoft.DocAsCode.MarkdownLite.IMarkdownParser,Microsoft.DocAsCode.MarkdownLite.IMarkdownParsingContext)">
- <summary>
- Try match this rule.
- </summary>
- <param name="parser">The markdown parser.</param>
- <param name="context">The context for parser, contains markdown text, line number and file.</param>
- <returns>If matched, an instance of <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownToken"/> should be return, otherwise null.</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownToken">
- <summary>
- The token for markdown.
- It should be immutable.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownToken.Rule">
- <summary>
- The rule created this token.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownToken.Context">
- <summary>
- The context when created this token.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.IMarkdownToken.SourceInfo">
- <summary>
- The source info of this token.
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder">
- <summary>
- A builder for create an instance of <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine"/>
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder.Options">
- <summary>
- The options.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder.BlockRules">
- <summary>
- The block rules.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder.InlineRules">
- <summary>
- The inline rules.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder.Rewriter">
- <summary>
- The markdown token rewriter.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder.TokenTreeValidator">
- <summary>
- The markdown token tree validator.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder.CreateParseContext">
- <summary>
- Create markdown paring context.
- </summary>
- <returns>a instance of <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownContext"/></returns>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.MarkdownEngineBuilder.CreateEngine(System.Object)">
- <summary>
- Create an instance of <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine"/>
- </summary>
- <param name="renderer">the renderer.</param>
- <returns>an instance of <see cref="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownEngine"/></returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.MarkdownRendererAdapter">
- <summary>
- The adapter for markdown renderer, use dynamic dispatch.
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.MarkdownLite.Regexes.Inline.Link">
- <summary>
- <![CDATA[
- ^ start of string
- !? '!' 0~1
- \[ '['
- ((?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*) group 1: text
- \] ']'
- \s* white spaces
- \( '('
- \s* white spaces
- <? '<' 0~1
- ( start group 2: link
- (?: start non-capturing group
- [^()] any chararacter but '(' or ')'
- | or
- \((?<DEPTH>) '(' with depth++
- | or
- \)(?<-DEPTH>) ')' with depth--
- ) end non-capturing group
- +? lazy 1~
- (?(DEPTH)(?!)) require depth = 0
- ) end group 2: link
- >? '>' 0~1
- (?: start non-capturing group
- \s+ white spaces
- (['""]) group 3: quotes
- ([\s\S]*?) group 4: title
- \3 ref group 3
- )? end non-capturing group 0~1
- \s* white spaces
- \) ')'
- ]]>
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.StringBuffer">
- <summary>
- A type like <see cref="T:System.Text.StringBuilder"/> but only do concat.
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.MarkdownLite.StringBuffer.Empty">
- <summary>
- An empty <see cref="T:Microsoft.DocAsCode.MarkdownLite.StringBuffer"/>.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.MarkdownTextInlineRule.Smartypants(Microsoft.DocAsCode.MarkdownLite.Options,System.String)">
- <summary>
- Smartypants Transformations
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.IMarkdownTokenRewriter">
- <summary>
- rewrite the markdown when rendering
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.MarkdownLite.IMarkdownTokenRewriter.Rewrite(Microsoft.DocAsCode.MarkdownLite.IMarkdownRewriteEngine,Microsoft.DocAsCode.MarkdownLite.IMarkdownToken)">
- <summary>
- rewrite
- </summary>
- <param name="engine">the engine</param>
- <param name="token">the token</param>
- <returns>If need rewrite, return the new token, otherwise, null</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.MarkdownLite.MarkdownNullTokenRewriter">
- <summary>
- Null object.
- </summary>
- </member>
- </members>
-</doc>
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Plugins.dll b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Plugins.dll
deleted file mode 100644
index 265c6cd..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Plugins.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Plugins.xml b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Plugins.xml
deleted file mode 100644
index 65f3432..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Plugins.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>Microsoft.DocAsCode.Plugins</name>
- </assembly>
- <members>
- <member name="T:Microsoft.DocAsCode.Plugins.ICustomMarkdownTagValidator">
- <summary>
- Contract interface for custom validate tag in markdown
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.GetFilePath(System.String)">
- <summary>
- Get final file path from working folder, starting with ~/
- </summary>
- <param name="key">Key is the original file path from working folder, starting with ~/</param>
- <returns>The final file path for current file</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.SetFilePath(System.String,System.String)">
- <summary>
- Set the final file path for current file
- </summary>
- <param name="key">The file key of current file</param>
- <param name="filePath">The final file path for current file</param>
- <returns></returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.GetXrefSpec(System.String)">
- <summary>
- Get internal xref spec for current uid
- </summary>
- <param name="uid">The uid of the file</param>
- <returns>The file key of current file</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.RegisterInternalXrefSpec(Microsoft.DocAsCode.Plugins.XRefSpec)">
- <summary>
- Register internal xref spec
- </summary>
- <param name="uid">The uid of current file</param>
- <param name="fileKey">The file key of current file</param>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.GetTocFileKeySet(System.String)">
- <summary>
- Get a set of file key for the toc files that current file belongs to
- </summary>
- <param name="key">The key of current file</param>
- <returns>The set of file key for the toc files that current file belongs to</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.RegisterToc(System.String,System.String)">
- <summary>
- Register the relationship between current toc file and the article
- </summary>
- <param name="tocFileKey">The key of the toc file that the file belongs to</param>
- <param name="fileKey">The key of the file that belongs to the toc</param>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.RegisterTocInfo(Microsoft.DocAsCode.Plugins.TocInfo)">
- <summary>
- Register the toc file to context with its information provided
- </summary>
- <param name="toc">The information for the toc, containing the homepage of the toc</param>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IDocumentBuildContext.GetTocInfo">
- <summary>
- Get all the registered toc information
- </summary>
- <returns>All the registered toc information</returns>
- </member>
- <member name="P:Microsoft.DocAsCode.Plugins.IHostService.Processor">
- <summary>
- Get current <see cref="T:Microsoft.DocAsCode.Plugins.IDocumentProcessor"/>.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IPostProcessor.PrepareMetadata(System.Collections.Immutable.ImmutableDictionary{System.String,System.Object})">
- <summary>
- Update global metadata before building all the files declared in `docfx.json`
- </summary>
- <param name="metadata"></param>
- <returns></returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.IPostProcessor.Process(Microsoft.DocAsCode.Plugins.Manifest,System.String)">
- <summary>
- Add/remove/update all the files included in manifest
- </summary>
- <param name="manifest"></param>
- <param name="outputFolder">The output folder where our static website will be placed</param>
- <returns></returns>
- </member>
- <member name="T:Microsoft.DocAsCode.Plugins.ISupportIncrementalBuild">
- <summary>
- Declare a document processor or a step can support incremental build.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.ISupportIncrementalBuild.GetIncrementalContextHash">
- <summary>
- Get the hash of incremental context, if it is different from latest one then full build.
- </summary>
- <returns>the hash.</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.ISupportIncrementalBuild.CanIncrementalBuild(Microsoft.DocAsCode.Plugins.FileAndType)">
- <summary>
- Check each file, when incremental context hash is same.
- </summary>
- <param name="fileAndType">the file and type information</param>
- <returns>Can use incremental build for this file.</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Plugins.XRefSpec.Merge(Microsoft.DocAsCode.Plugins.XRefSpec,Microsoft.DocAsCode.Plugins.XRefSpec)">
- <summary>
- Merge two xref spec (right overwrite left).
- </summary>
- </member>
- </members>
-</doc>
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Utility.dll b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Utility.dll
deleted file mode 100644
index 082874d..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Utility.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Utility.xml b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Utility.xml
deleted file mode 100644
index e96ce64..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.Utility.xml
+++ /dev/null
@@ -1,242 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>Microsoft.DocAsCode.Utility</name>
- </assembly>
- <members>
- <member name="T:Microsoft.DocAsCode.Utility.AsyncConcurrentCache`2">
- <summary>
- An asynchronous wrapper over concurrent dictionary
- </summary>
- <typeparam name="TKey">Type of keys</typeparam>
- <typeparam name="TValue">Type of values</typeparam>
- <remarks>Implementation copied from http://msdn.microsoft.com/en-us/library/hh873173(v=vs.110).aspx, AsyncCache</remarks>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.AsyncConcurrentCache`2.GetOrAdd(`0,System.Func{`0,System.Threading.Tasks.Task{`1}},System.Boolean)">
- <summary>
- Adds a key/value pair to the <see cref="T:Microsoft.DocAsCode.Utility.AsyncConcurrentCache`2"/> by using the specified function, if the key does not already exist.
- </summary>
- <param name="key">The key of the element to add.</param>
- <param name="valueFactory">The function used to get a task to generate value for the key</param>
- <param name="removeKeyOnFaulted">A flag indicating whether to remove the key from cache on faulted.</param>
- <returns>The task to generate value for the key</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.AsyncConcurrentCache`2.TryGetValue(`0,System.Threading.Tasks.Task{`1}@)">
- <summary>
- Attempts to get the value associated with the specified key in cache.
- </summary>
- <param name="key">The key of the element</param>
- <param name="value">The task to generate value for the key</param>
- <returns>true if the task was found; otherwise, false.</returns>
- </member>
- <member name="P:Microsoft.DocAsCode.Utility.AsyncConcurrentCache`2.Values">
- <summary>
- Gets a list of tasks in cache.
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.Utility.CompositeStream">
- <summary>
- Write-only composite stream.
- </summary>
- </member>
- <member name="P:Microsoft.DocAsCode.Utility.GitDetail.RelativePath">
- <summary>
- Relative path of current file to the Git Root Directory
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.GitUtility.GetGitDetail(System.String)">
- <summary>
- TODO: only get GitDetail on Project level?
- </summary>
- <param name="path"></param>
- <returns></returns>
- </member>
- <member name="T:Microsoft.DocAsCode.Utility.PathUtility">
- <summary>
-
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.PathUtility.IsVaildFilePath(System.String)">
- <summary>
- http://stackoverflow.com/questions/422090/in-c-sharp-check-that-filename-is-possibly-valid-not-that-it-exists
- </summary>
- <param name="path"></param>
- <returns></returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.PathUtility.MakeRelativePath(System.String,System.String)">
- <summary>
- Creates a relative path from one file or folder to another.
- </summary>
- <param name="basePath">Contains the directory that defines the start of the relative path.</param>
- <param name="absolutePath">Contains the path that defines the endpoint of the relative path.</param>
- <returns>The relative path from the start directory to the end path.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.UriFormatException"></exception>
- <exception cref="T:System.InvalidOperationException"></exception>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.PathUtility.FormatPath(System.String,System.UriKind,System.String)">
- <summary>
- Also change backslash to forward slash
- </summary>
- <param name="path"></param>
- <param name="kind"></param>
- <param name="basePath"></param>
- <returns></returns>
- </member>
- <member name="T:Microsoft.DocAsCode.Utility.RelativePath">
- <summary>
- relative path
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.RelativePath.BasedOn(Microsoft.DocAsCode.Utility.RelativePath)">
- <summary>
- Concat two relative path
- e.g.:
- {d/e.txt}.BasedOn({a/b/c/}) = {a/b/c/d/e.txt}
- {../d/e.txt}.BasedOn({a/b/c/}) = {a/b/d/e.txt}
- {d/e.txt}.BasedOn({a/b/c.txt}) = {a/b/d/e.txt}
- {../e.txt}.BasedOn({a/b/c.txt}) = {a/e.txt}
- {../e.txt}.BasedOn({../c.txt}) = {../../e.txt}
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.RelativePath.MakeRelativeTo(Microsoft.DocAsCode.Utility.RelativePath)">
- <summary>
- Get relative path from right relative path to left relative path
- e.g.:
- {a/b/c.txt}.MakeRelativeTo({d/e.txt}) = {../a/b/c.txt}
- {a/b/c.txt}.MakeRelativeTo({a/d.txt}) = {b/c.txt}
- {../../a.txt}.MakeRelativeTo({../b.txt}) = {../a.txt}
- {../../a.txt}.MakeRelativeTo({../b/c.txt}) = {../../a.txt}
- {a.txt}.MakeRelativeTo({../b.txt}) = Oop...
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.RelativePath.Rebase(Microsoft.DocAsCode.Utility.RelativePath,Microsoft.DocAsCode.Utility.RelativePath)">
- <summary>
- Rebase the relative path
- </summary>
- <param name="from">original base path</param>
- <param name="to">new base path</param>
- <returns>rebased relative path</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.RelativePath.op_Addition(Microsoft.DocAsCode.Utility.RelativePath,Microsoft.DocAsCode.Utility.RelativePath)">
- <summary>
- Concat two relative path
- e.g.:
- a/b/c/ + d/e.txt = a/b/c/d/e.txt
- a/b/c/ + ../d/e.txt = a/b/d/e.txt
- a/b/c.txt + d/e.txt = a/b/d/e.txt
- a/b/c.txt + ../e.txt = a/e.txt
- ../c.txt + ../e.txt = ../../e.txt
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.RelativePath.op_Subtraction(Microsoft.DocAsCode.Utility.RelativePath,Microsoft.DocAsCode.Utility.RelativePath)">
- <summary>
- Get relative path from right relative path to left relative path
- e.g.:
- a/b/c.txt - d/e.txt = ../a/b/c.txt
- a/b/c.txt - a/d.txt = b/c.txt
- ../../a.txt - ../b.txt = ../a.txt
- ../../a.txt - ../b/c.txt = ../../a.txt
- a.txt - ../b.txt = Oop...
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.StringExtension.ToNormalizedFullPath(System.String)">
- <summary>
- Should not convert path to lower case as under Linux/Unix, path is case sensitive
- Also, Website URL should be case sensitive consider the server might be running under Linux/Unix
- So we could even not lower the path under Windows as the generated YAML should be ideally OS irrelevant
- </summary>
- <param name="path"></param>
- <returns></returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.TaskHelper.ForEachInParallelAsync``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Threading.Tasks.Task},System.Int32)">
- <summary>
- Provide parallel version for ForEach
- </summary>
- <typeparam name="T">The type for the enumerable</typeparam>
- <param name="source">The enumerable to control the foreach loop</param>
- <param name="body">The task body</param>
- <param name="maxParallelism">The max parallelism allowed</param>
- <returns>The task</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.TaskHelper.ForEachInParallelAsync``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Threading.Tasks.Task})">
- <summary>
- Provide parallel version for ForEach
- </summary>
- <typeparam name="T">The type for the enumerable</typeparam>
- <param name="source">The enumerable to control the foreach loop</param>
- <param name="body">The task body</param>
- <returns>The task</returns>
- <remarks>The max parallelism is 64.</remarks>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.TaskHelper.SelectInParallelAsync``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Threading.Tasks.Task{``1}},System.Int32)">
- <summary>
- Provide parallel version for Select that each element will map to a result
- </summary>
- <typeparam name="TSource">The type for the enumerable</typeparam>
- <typeparam name="TResult">The type for the result</typeparam>
- <param name="source">The enumerable to control the select</param>
- <param name="body">The select body</param>
- <param name="maxParallelism">The max parallelism allowed</param>
- <returns>The task</returns>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.TaskHelper.SelectInParallelAsync``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Threading.Tasks.Task{``1}})">
- <summary>
- Provide parallel version for Select that each element will map to a result
- </summary>
- <typeparam name="TSource">The type for the enumerable</typeparam>
- <typeparam name="TResult">The type for the result</typeparam>
- <param name="source">The enumerable to control the select</param>
- <param name="body">The select body</param>
- <returns>The task</returns>
- <remarks>The max parallelism is 64.</remarks>
- </member>
- <member name="F:Microsoft.DocAsCode.Utility.TaskHelper.Completed">
- <summary>
- A completed task
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.Utility.EntityMergers.MergeOption.MergeKey">
- <summary>
- Identify merge item in list.
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.Utility.EntityMergers.MergeOption.Ignore">
- <summary>
- Do not merge this property.
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.Utility.EntityMergers.MergeOption.Merge">
- <summary>
- Standard merge(default behavior):
- <list>
- <item>for list, merge the items in the list by the merge key.</item>
- <item>for string or any value type, replace it when it is not null or default value in override entity.</item>
- <item>for other type, merge each property.</item>
- </list>
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.Utility.EntityMergers.MergeOption.MergeNullOrDefault">
- <summary>
- When it is not null or default value in override entity, it is same with merge.
- When it is null or default value in override entity, it will replace the property to null or default value.
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.Utility.EntityMergers.MergeOption.Replace">
- <summary>
- Replace it when it is not null or default value in override entity.
- </summary>
- </member>
- <member name="F:Microsoft.DocAsCode.Utility.EntityMergers.MergeOption.ReplaceNullOrDefault">
- <summary>
- Always replace.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.Utility.EntityMergers.MergeOptionAttribute.#ctor(System.Type)">
- <summary>
- Hint merger use custom merge handler.
- </summary>
- <param name="handlerType">the type of custom merge handler, it should implement <see cref="T:Microsoft.DocAsCode.Utility.EntityMergers.IMergeHandler"/>.</param>
- </member>
- </members>
-</doc>
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.YamlSerialization.dll b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.YamlSerialization.dll
deleted file mode 100644
index 29099d1..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.YamlSerialization.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.YamlSerialization.xml b/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.YamlSerialization.xml
deleted file mode 100644
index 60b3641..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Microsoft.DocAsCode.YamlSerialization.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>Microsoft.DocAsCode.YamlSerialization</name>
- </assembly>
- <members>
- <member name="T:Microsoft.DocAsCode.YamlSerialization.YamlDeserializer">
- <summary>
- A fa�ade for the YAML library with the standard configuration.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.YamlSerialization.YamlDeserializer.Deserialize(YamlDotNet.Core.EventReader,System.Type,YamlDotNet.Serialization.IValueDeserializer)">
- <summary>
- Deserializes an object of the specified type.
- </summary>
- <param name="reader">The <see cref="T:YamlDotNet.Core.EventReader" /> where to deserialize the object.</param>
- <param name="type">The static type of the object to deserialize.</param>
- <returns>Returns the deserialized object.</returns>
- </member>
- <member name="T:Microsoft.DocAsCode.YamlSerialization.Helpers.ArrayDictionary`2">
- <summary>
- Array based key-value cache.
- *Optimized for small size.*
- All method is thread safe.
- </summary>
- </member>
- <member name="M:Microsoft.DocAsCode.YamlSerialization.Helpers.ReflectionExtensions.HasDefaultConstructor(System.Type)">
- <summary>
- Determines whether the specified type has a default constructor.
- </summary>
- <param name="type">The type.</param>
- <returns>
- <c>true</c> if the type has a default constructor; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Microsoft.DocAsCode.YamlSerialization.ObjectGraphTraversalStrategies.FullObjectGraphTraversalStrategy">
- <summary>
- An implementation of <see cref="T:YamlDotNet.Serialization.IObjectGraphTraversalStrategy"/> that traverses
- readable properties, collections and dictionaries.
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.YamlSerialization.ObjectGraphTraversalStrategies.RoundtripObjectGraphTraversalStrategy">
- <summary>
- An implementation of <see cref="T:YamlDotNet.Serialization.IObjectGraphTraversalStrategy"/> that traverses
- properties that are read/write, collections and dictionaries, while ensuring that
- the graph can be regenerated from the resulting document.
- </summary>
- </member>
- <member name="T:Microsoft.DocAsCode.YamlSerialization.TypeInspectors.ExtensibleYamlAttributesTypeInspector">
- <summary>
- Applies the <see cref="T:YamlDotNet.Serialization.YamlMemberAttribute"/> to another <see cref="T:YamlDotNet.Serialization.ITypeInspector"/>.
- </summary>
- </member>
- </members>
-</doc>
diff --git a/Dfm_test/Dfm_test/bin/Debug/Newtonsoft.Json.dll b/Dfm_test/Dfm_test/bin/Debug/Newtonsoft.Json.dll
deleted file mode 100644
index d4c9037..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Newtonsoft.Json.dll
+++ /dev/null
Binary files differ
diff --git a/Dfm_test/Dfm_test/bin/Debug/Newtonsoft.Json.xml b/Dfm_test/Dfm_test/bin/Debug/Newtonsoft.Json.xml
deleted file mode 100644
index 246ae3b..0000000
--- a/Dfm_test/Dfm_test/bin/Debug/Newtonsoft.Json.xml
+++ /dev/null
@@ -1,8889 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>Newtonsoft.Json</name>
- </assembly>
- <members>
- <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
- <summary>
- Represents a BSON Oid (object id).
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
- </summary>
- <param name="value">The Oid value.</param>
- </member>
- <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
- <summary>
- Gets or sets the value of the Oid.
- </summary>
- <value>The value of the Oid.</value>
- </member>
- <member name="T:Newtonsoft.Json.Bson.BsonReader">
- <summary>
- Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonReader">
- <summary>
- Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.Read">
- <summary>
- Reads the next JSON token from the stream.
- </summary>
- <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
- </summary>
- <returns>A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.Skip">
- <summary>
- Skips the children of the current token.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
- <summary>
- Sets the current token.
- </summary>
- <param name="newToken">The new token.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
- <summary>
- Sets the current token and value.
- </summary>
- <param name="newToken">The new token.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
- <summary>
- Sets the state based on current token type.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
- <summary>
- Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
- <summary>
- Releases unmanaged and - optionally - managed resources
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonReader.Close">
- <summary>
- Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
- <summary>
- Gets the current reader state.
- </summary>
- <value>The current reader state.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
- <summary>
- Gets or sets a value indicating whether the underlying stream or
- <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
- </summary>
- <value>
- true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
- the reader is closed; otherwise false. The default is true.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
- <summary>
- Gets or sets a value indicating whether multiple pieces of JSON content can
- be read from a continuous stream without erroring.
- </summary>
- <value>
- true to support reading multiple pieces of JSON content; otherwise false. The default is false.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
- <summary>
- Gets the quotation mark character used to enclose the value of a string.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
- <summary>
- Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
- <summary>
- Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
- <summary>
- Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
- <summary>
- Get or set how custom date formatted strings are parsed when reading JSON.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
- <summary>
- Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.TokenType">
- <summary>
- Gets the type of the current JSON token.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.Value">
- <summary>
- Gets the text value of the current JSON token.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.ValueType">
- <summary>
- Gets The Common Language Runtime (CLR) type for the current JSON token.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.Depth">
- <summary>
- Gets the depth of the current token in the JSON document.
- </summary>
- <value>The depth of the current token in the JSON document.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.Path">
- <summary>
- Gets the path of the current JSON token.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonReader.Culture">
- <summary>
- Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonReader.State">
- <summary>
- Specifies the state of the reader.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Start">
- <summary>
- The Read method has not been called.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
- <summary>
- The end of the file has been reached successfully.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Property">
- <summary>
- Reader is at a property.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
- <summary>
- Reader is at the start of an object.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Object">
- <summary>
- Reader is in an object.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
- <summary>
- Reader is at the start of an array.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Array">
- <summary>
- Reader is in an array.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
- <summary>
- The Close method has been called.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
- <summary>
- Reader has just read a value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
- <summary>
- Reader is at the start of a constructor.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
- <summary>
- Reader in a constructor.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Error">
- <summary>
- An error occurred that prevents the read operation from continuing.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
- <summary>
- The end of the file has been reached successfully.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
- </summary>
- <param name="stream">The stream.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
- </summary>
- <param name="reader">The reader.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
- </summary>
- <param name="stream">The stream.</param>
- <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
- <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
- </summary>
- <param name="reader">The reader.</param>
- <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
- <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
- </summary>
- <returns>
- A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>
- A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
- <summary>
- Reads the next JSON token from the stream.
- </summary>
- <returns>
- true if the next token was read successfully; false if there are no more tokens to read.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
- <summary>
- Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
- <summary>
- Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
- </summary>
- <value>
- <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
- <summary>
- Gets or sets a value indicating whether the root object will be read as a JSON array.
- </summary>
- <value>
- <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
- <summary>
- Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
- </summary>
- <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
- </member>
- <member name="T:Newtonsoft.Json.Bson.BsonWriter">
- <summary>
- Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonWriter">
- <summary>
- Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
- <summary>
- Creates an instance of the <c>JsonWriter</c> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.Flush">
- <summary>
- Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.Close">
- <summary>
- Closes this stream and the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
- <summary>
- Writes the beginning of a JSON object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
- <summary>
- Writes the end of a JSON object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
- <summary>
- Writes the beginning of a JSON array.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
- <summary>
- Writes the end of an array.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
- <summary>
- Writes the start of a constructor with the given name.
- </summary>
- <param name="name">The name of the constructor.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
- <summary>
- Writes the end constructor.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
- <summary>
- Writes the property name of a name/value pair on a JSON object.
- </summary>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
- <summary>
- Writes the property name of a name/value pair on a JSON object.
- </summary>
- <param name="name">The name of the property.</param>
- <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
- <summary>
- Writes the end of the current JSON object or array.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
- <summary>
- Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
- <summary>
- Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
- <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
- <summary>
- Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
- </summary>
- <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
- <param name="value">
- The value to write.
- A value is only required for tokens that have an associated value, e.g. the <see cref="T:System.String"/> property name for <see cref="F:Newtonsoft.Json.JsonToken.PropertyName"/>.
- A null value can be passed to the method for token's that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
- <summary>
- Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
- </summary>
- <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
- <summary>
- Writes the specified end token.
- </summary>
- <param name="token">The end token to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
- <summary>
- Writes indent characters.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
- <summary>
- Writes the JSON value delimiter.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
- <summary>
- Writes an indent space.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
- <summary>
- Writes a null value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
- <summary>
- Writes an undefined value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
- <summary>
- Writes raw JSON without changing the writer's state.
- </summary>
- <param name="json">The raw JSON to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
- <summary>
- Writes raw JSON where a value is expected and updates the writer's state.
- </summary>
- <param name="json">The raw JSON to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
- <summary>
- Writes a <see cref="T:System.String"/> value.
- </summary>
- <param name="value">The <see cref="T:System.String"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
- <summary>
- Writes a <see cref="T:System.Int32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
- <summary>
- Writes a <see cref="T:System.UInt32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
- <summary>
- Writes a <see cref="T:System.Int64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
- <summary>
- Writes a <see cref="T:System.UInt64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
- <summary>
- Writes a <see cref="T:System.Single"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Single"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
- <summary>
- Writes a <see cref="T:System.Double"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Double"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
- <summary>
- Writes a <see cref="T:System.Boolean"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
- <summary>
- Writes a <see cref="T:System.Int16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
- <summary>
- Writes a <see cref="T:System.UInt16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
- <summary>
- Writes a <see cref="T:System.Char"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Char"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
- <summary>
- Writes a <see cref="T:System.Byte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
- <summary>
- Writes a <see cref="T:System.SByte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
- <summary>
- Writes a <see cref="T:System.Decimal"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
- <summary>
- Writes a <see cref="T:System.DateTime"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
- <summary>
- Writes a <see cref="T:System.DateTimeOffset"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
- <summary>
- Writes a <see cref="T:System.Guid"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
- <summary>
- Writes a <see cref="T:System.TimeSpan"/> value.
- </summary>
- <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
- <summary>
- Writes a <see cref="T:System.Byte"/>[] value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
- <summary>
- Writes a <see cref="T:System.Uri"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
- <summary>
- Writes a <see cref="T:System.Object"/> value.
- An error will raised if the value cannot be written as a single JSON token.
- </summary>
- <param name="value">The <see cref="T:System.Object"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
- <summary>
- Writes out a comment <code>/*...*/</code> containing the specified text.
- </summary>
- <param name="text">Text to place inside the comment.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
- <summary>
- Writes out the given white space.
- </summary>
- <param name="ws">The string of white space characters.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
- <summary>
- Sets the state of the JsonWriter,
- </summary>
- <param name="token">The JsonToken being written.</param>
- <param name="value">The value being written.</param>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
- <summary>
- Gets or sets a value indicating whether the underlying stream or
- <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
- </summary>
- <value>
- true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
- the writer is closed; otherwise false. The default is true.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.Top">
- <summary>
- Gets the top.
- </summary>
- <value>The top.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
- <summary>
- Gets the state of the writer.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.Path">
- <summary>
- Gets the path of the writer.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
- <summary>
- Indicates how JSON text output is formatted.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
- <summary>
- Get or set how dates are written to JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
- <summary>
- Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
- <summary>
- Get or set how strings are escaped when writing JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
- <summary>
- Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
- <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
- are written to JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
- <summary>
- Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriter.Culture">
- <summary>
- Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
- </summary>
- <param name="stream">The stream.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
- </summary>
- <param name="writer">The writer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
- <summary>
- Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
- <summary>
- Writes the end.
- </summary>
- <param name="token">The token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
- <summary>
- Writes out a comment <code>/*...*/</code> containing the specified text.
- </summary>
- <param name="text">Text to place inside the comment.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
- <summary>
- Writes the start of a constructor with the given name.
- </summary>
- <param name="name">The name of the constructor.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
- <summary>
- Writes raw JSON.
- </summary>
- <param name="json">The raw JSON to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
- <summary>
- Writes raw JSON where a value is expected and updates the writer's state.
- </summary>
- <param name="json">The raw JSON to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
- <summary>
- Writes the beginning of a JSON array.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
- <summary>
- Writes the beginning of a JSON object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
- <summary>
- Writes the property name of a name/value pair on a JSON object.
- </summary>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
- <summary>
- Closes this stream and the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
- <summary>
- Writes a <see cref="T:System.Object"/> value.
- An error will raised if the value cannot be written as a single JSON token.
- </summary>
- <param name="value">The <see cref="T:System.Object"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
- <summary>
- Writes a null value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
- <summary>
- Writes an undefined value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
- <summary>
- Writes a <see cref="T:System.String"/> value.
- </summary>
- <param name="value">The <see cref="T:System.String"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
- <summary>
- Writes a <see cref="T:System.Int32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
- <summary>
- Writes a <see cref="T:System.UInt32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
- <summary>
- Writes a <see cref="T:System.Int64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
- <summary>
- Writes a <see cref="T:System.UInt64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
- <summary>
- Writes a <see cref="T:System.Single"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Single"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
- <summary>
- Writes a <see cref="T:System.Double"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Double"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
- <summary>
- Writes a <see cref="T:System.Boolean"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
- <summary>
- Writes a <see cref="T:System.Int16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
- <summary>
- Writes a <see cref="T:System.UInt16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
- <summary>
- Writes a <see cref="T:System.Char"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Char"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
- <summary>
- Writes a <see cref="T:System.Byte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
- <summary>
- Writes a <see cref="T:System.SByte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
- <summary>
- Writes a <see cref="T:System.Decimal"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
- <summary>
- Writes a <see cref="T:System.DateTime"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
- <summary>
- Writes a <see cref="T:System.DateTimeOffset"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
- <summary>
- Writes a <see cref="T:System.Byte"/>[] value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
- <summary>
- Writes a <see cref="T:System.Guid"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
- <summary>
- Writes a <see cref="T:System.TimeSpan"/> value.
- </summary>
- <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
- <summary>
- Writes a <see cref="T:System.Uri"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
- <summary>
- Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
- </summary>
- <param name="value">The Object ID value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
- <summary>
- Writes a BSON regex.
- </summary>
- <param name="pattern">The regex pattern.</param>
- <param name="options">The regex options.</param>
- </member>
- <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
- <summary>
- Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
- When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
- </summary>
- <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
- </member>
- <member name="T:Newtonsoft.Json.ConstructorHandling">
- <summary>
- Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
- <summary>
- First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
- <summary>
- Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
- <summary>
- Converts a binary value to and from a base 64 string value.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonConverter">
- <summary>
- Converts an object to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
- <summary>
- <para>
- Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
- </para>
- <note type="caution">
- JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
- </note>
- </summary>
- <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
- </member>
- <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
- <summary>
- Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
- </summary>
- <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
- <summary>
- Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
- </summary>
- <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
- </member>
- <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
- <summary>
- Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
- <summary>
- Create a custom object
- </summary>
- <typeparam name="T">The object type to convert.</typeparam>
- </member>
- <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
- <summary>
- Creates an object which will then be populated by the serializer.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>The created object.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
- <summary>
- Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
- </summary>
- <value>
- <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
- <summary>
- Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified value type.
- </summary>
- <param name="valueType">Type of the value.</param>
- <returns>
- <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
- <summary>
- Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified value type.
- </summary>
- <param name="valueType">Type of the value.</param>
- <returns>
- <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
- <summary>
- Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
- <summary>
- Converts a F# discriminated union type to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
- <summary>
- Converts an Entity Framework EntityKey to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
- <summary>
- Converts an ExpandoObject to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
- <summary>
- Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
- </summary>
- <value>
- <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
- <summary>
- Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
- <summary>
- Gets or sets the date time styles used when converting a date to and from JSON.
- </summary>
- <value>The date time styles used when converting a date to and from JSON.</value>
- </member>
- <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
- <summary>
- Gets or sets the date time format used when converting a date to and from JSON.
- </summary>
- <value>The date time format used when converting a date to and from JSON.</value>
- </member>
- <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
- <summary>
- Gets or sets the culture used when converting a date to and from JSON.
- </summary>
- <value>The culture used when converting a date to and from JSON.</value>
- </member>
- <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
- <summary>
- Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing property value of the JSON that is being converted.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
- <summary>
- Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.RegexConverter">
- <summary>
- Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
- <summary>
- Converts an <see cref="T:System.Enum"/> to and from its name string value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
- <summary>
- Gets or sets a value indicating whether the written enum text should be camel case.
- </summary>
- <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
- </member>
- <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
- <summary>
- Gets or sets a value indicating whether integer values are allowed.
- </summary>
- <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
- </member>
- <member name="T:Newtonsoft.Json.Converters.VersionConverter">
- <summary>
- Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="value">The value.</param>
- <param name="serializer">The calling serializer.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing property value of the JSON that is being converted.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified object type.
- </summary>
- <param name="objectType">Type of the object.</param>
- <returns>
- <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
- <summary>
- Converts XML to and from JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Writes the JSON representation of the object.
- </summary>
- <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
- <param name="serializer">The calling serializer.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Reads the JSON representation of the object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
- <param name="objectType">Type of the object.</param>
- <param name="existingValue">The existing value of object being read.</param>
- <param name="serializer">The calling serializer.</param>
- <returns>The object value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
- <summary>
- Checks if the attributeName is a namespace attribute.
- </summary>
- <param name="attributeName">Attribute name to test.</param>
- <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
- <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
- <summary>
- Determines whether this instance can convert the specified value type.
- </summary>
- <param name="valueType">Type of the value.</param>
- <returns>
- <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
- <summary>
- Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
- </summary>
- <value>The name of the deserialize root element.</value>
- </member>
- <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
- <summary>
- 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.
- </summary>
- <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
- </member>
- <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
- <summary>
- Gets or sets a value indicating whether to write the root JSON object.
- </summary>
- <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
- </member>
- <member name="T:Newtonsoft.Json.FloatParseHandling">
- <summary>
- Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
- <summary>
- Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
- <summary>
- Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.DateFormatHandling">
- <summary>
- Specifies how dates are formatted when writing JSON text.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
- <summary>
- Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
- <summary>
- Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.DateParseHandling">
- <summary>
- Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateParseHandling.None">
- <summary>
- Date formatted strings are not parsed to a date type and are read as strings.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
- <summary>
- Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
- <summary>
- Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
- <summary>
- Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
- <summary>
- Treat as local time. If the <see cref="T:System.DateTime"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
- <summary>
- Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
- <summary>
- Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
- If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
- <summary>
- Time zone information should be preserved when converting.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.DefaultValueHandling">
- <summary>
- Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- <example>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>
- </example>
- </member>
- <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
- <summary>
- 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.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
- <summary>
- 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.
- This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
- decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
- placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
- <summary>
- Members with a default value but no JSON will be set to their default value when deserializing.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
- <summary>
- 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.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.FloatFormatHandling">
- <summary>
- Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
- <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
- <summary>
- Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
- <summary>
- Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
- Note that this will produce non-valid JSON.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
- <summary>
- Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.Formatting">
- <summary>
- Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Formatting.None">
- <summary>
- No special formatting is applied. This is the default.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Formatting.Indented">
- <summary>
- Causes child objects to be indented according to the <see cref="P:Newtonsoft.Json.JsonTextWriter.Indentation"/> and <see cref="P:Newtonsoft.Json.JsonTextWriter.IndentChar"/> settings.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.IJsonLineInfo">
- <summary>
- Provides an interface to enable a class to return line and position information.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
- <summary>
- Gets a value indicating whether the class can return line information.
- </summary>
- <returns>
- <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
- <summary>
- Gets the current line number.
- </summary>
- <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
- </member>
- <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
- <summary>
- Gets the current line position.
- </summary>
- <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
- </member>
- <member name="T:Newtonsoft.Json.JsonArrayAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonContainerAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
- </summary>
- <param name="id">The container Id.</param>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
- <summary>
- Gets or sets the id.
- </summary>
- <value>The id.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
- <summary>
- Gets or sets the title.
- </summary>
- <value>The title.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
- <summary>
- Gets or sets the description.
- </summary>
- <value>The description.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
- <summary>
- Gets the collection's items converter.
- </summary>
- <value>The collection's items converter.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
- <summary>
- The parameter list to use when constructing the JsonConverter described by ItemConverterType.
- If null, the default constructor is used.
- When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
- order, and type of these parameters.
- </summary>
- <example>
- [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
- </example>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
- <summary>
- Gets or sets a value that indicates whether to preserve object references.
- </summary>
- <value>
- <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
- <summary>
- Gets or sets a value that indicates whether to preserve collection's items references.
- </summary>
- <value>
- <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
- <summary>
- Gets or sets the reference loop handling used when serializing the collection's items.
- </summary>
- <value>The reference loop handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
- <summary>
- Gets or sets the type name handling used when serializing the collection's items.
- </summary>
- <value>The type name handling.</value>
- </member>
- <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
- </summary>
- <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
- </summary>
- <param name="id">The container Id.</param>
- </member>
- <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
- <summary>
- Gets or sets a value indicating whether null items are allowed in the collection.
- </summary>
- <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
- </member>
- <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonConvert">
- <summary>
- Provides methods for converting between common language runtime types and JSON types.
- </summary>
- <example>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
- </example>
- </member>
- <member name="F:Newtonsoft.Json.JsonConvert.True">
- <summary>
- Represents JavaScript's boolean value true as a string. This field is read-only.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonConvert.False">
- <summary>
- Represents JavaScript's boolean value false as a string. This field is read-only.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonConvert.Null">
- <summary>
- Represents JavaScript's null as a string. This field is read-only.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
- <summary>
- Represents JavaScript's undefined as a string. This field is read-only.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
- <summary>
- Represents JavaScript's positive infinity as a string. This field is read-only.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
- <summary>
- Represents JavaScript's negative infinity as a string. This field is read-only.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonConvert.NaN">
- <summary>
- Represents JavaScript's NaN as a string. This field is read-only.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
- <summary>
- Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
- <summary>
- Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
- </summary>
- <param name="value">The value to convert.</param>
- <param name="format">The format the date will be converted to.</param>
- <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
- <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
- <summary>
- Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
- <summary>
- Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
- </summary>
- <param name="value">The value to convert.</param>
- <param name="format">The format the date will be converted to.</param>
- <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
- <summary>
- Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
- <summary>
- Converts the <see cref="T:System.Char"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
- <summary>
- Converts the <see cref="T:System.Enum"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
- <summary>
- Converts the <see cref="T:System.Int32"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
- <summary>
- Converts the <see cref="T:System.Int16"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
- <summary>
- Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
- <summary>
- Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
- <summary>
- Converts the <see cref="T:System.Int64"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
- <summary>
- Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
- <summary>
- Converts the <see cref="T:System.Single"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
- <summary>
- Converts the <see cref="T:System.Double"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
- <summary>
- Converts the <see cref="T:System.Byte"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
- <summary>
- Converts the <see cref="T:System.SByte"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
- <summary>
- Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
- <summary>
- Converts the <see cref="T:System.Guid"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
- <summary>
- Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
- <summary>
- Converts the <see cref="T:System.Uri"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
- <summary>
- Converts the <see cref="T:System.String"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
- <summary>
- Converts the <see cref="T:System.String"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <param name="delimiter">The string delimiter character.</param>
- <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
- <summary>
- Converts the <see cref="T:System.String"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <param name="delimiter">The string delimiter character.</param>
- <param name="stringEscapeHandling">The string escape handling.</param>
- <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
- <summary>
- Converts the <see cref="T:System.Object"/> to its JSON string representation.
- </summary>
- <param name="value">The value to convert.</param>
- <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
- <summary>
- Serializes the specified object to a JSON string.
- </summary>
- <param name="value">The object to serialize.</param>
- <returns>A JSON string representation of the object.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
- <summary>
- Serializes the specified object to a JSON string using formatting.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <returns>
- A JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="converters">A collection converters used while serializing.</param>
- <returns>A JSON string representation of the object.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <param name="converters">A collection converters used while serializing.</param>
- <returns>A JSON string representation of the object.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
- If this is null, default serialization settings will be used.</param>
- <returns>
- A JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
- If this is null, default serialization settings will be used.</param>
- <param name="type">
- The type of the value being serialized.
- This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
- Specifing the type is optional.
- </param>
- <returns>
- A JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
- If this is null, default serialization settings will be used.</param>
- <returns>
- A JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
- If this is null, default serialization settings will be used.</param>
- <param name="type">
- The type of the value being serialized.
- This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
- Specifing the type is optional.
- </param>
- <returns>
- A JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)">
- <summary>
- Asynchronously serializes the specified object to a JSON string.
- Serialization will happen on a new thread.
- </summary>
- <param name="value">The object to serialize.</param>
- <returns>
- A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)">
- <summary>
- Asynchronously serializes the specified object to a JSON string using formatting.
- Serialization will happen on a new thread.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <returns>
- A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Asynchronously serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
- Serialization will happen on a new thread.
- </summary>
- <param name="value">The object to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
- If this is null, default serialization settings will be used.</param>
- <returns>
- A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
- <summary>
- Deserializes the JSON to a .NET object.
- </summary>
- <param name="value">The JSON to deserialize.</param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The JSON to deserialize.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
- <summary>
- Deserializes the JSON to the specified .NET type.
- </summary>
- <param name="value">The JSON to deserialize.</param>
- <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
- <summary>
- Deserializes the JSON to the specified .NET type.
- </summary>
- <typeparam name="T">The type of the object to deserialize to.</typeparam>
- <param name="value">The JSON to deserialize.</param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
- <summary>
- Deserializes the JSON to the given anonymous type.
- </summary>
- <typeparam name="T">
- The anonymous type to deserialize to. This can't be specified
- traditionally and must be infered from the anonymous type passed
- as a parameter.
- </typeparam>
- <param name="value">The JSON to deserialize.</param>
- <param name="anonymousTypeObject">The anonymous type object.</param>
- <returns>The deserialized anonymous type from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <typeparam name="T">
- The anonymous type to deserialize to. This can't be specified
- traditionally and must be infered from the anonymous type passed
- as a parameter.
- </typeparam>
- <param name="value">The JSON to deserialize.</param>
- <param name="anonymousTypeObject">The anonymous type object.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- <returns>The deserialized anonymous type from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
- </summary>
- <typeparam name="T">The type of the object to deserialize to.</typeparam>
- <param name="value">The JSON to deserialize.</param>
- <param name="converters">Converters to use while deserializing.</param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <typeparam name="T">The type of the object to deserialize to.</typeparam>
- <param name="value">The object to deserialize.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
- </summary>
- <param name="value">The JSON to deserialize.</param>
- <param name="type">The type of the object to deserialize.</param>
- <param name="converters">Converters to use while deserializing.</param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The JSON to deserialize.</param>
- <param name="type">The type of the object to deserialize to.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- <returns>The deserialized object from the JSON string.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)">
- <summary>
- Asynchronously deserializes the JSON to the specified .NET type.
- Deserialization will happen on a new thread.
- </summary>
- <typeparam name="T">The type of the object to deserialize to.</typeparam>
- <param name="value">The JSON to deserialize.</param>
- <returns>
- A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- Deserialization will happen on a new thread.
- </summary>
- <typeparam name="T">The type of the object to deserialize to.</typeparam>
- <param name="value">The JSON to deserialize.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- <returns>
- A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)">
- <summary>
- Asynchronously deserializes the JSON to the specified .NET type.
- Deserialization will happen on a new thread.
- </summary>
- <param name="value">The JSON to deserialize.</param>
- <returns>
- A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- Deserialization will happen on a new thread.
- </summary>
- <param name="value">The JSON to deserialize.</param>
- <param name="type">The type of the object to deserialize to.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- <returns>
- A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
- <summary>
- Populates the object with values from the JSON string.
- </summary>
- <param name="value">The JSON to populate values from.</param>
- <param name="target">The target object to populate values onto.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The JSON to populate values from.</param>
- <param name="target">The target object to populate values onto.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Asynchronously populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- </summary>
- <param name="value">The JSON to populate values from.</param>
- <param name="target">The target object to populate values onto.</param>
- <param name="settings">
- The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
- If this is null, default serialization settings will be used.
- </param>
- <returns>
- A task that represents the asynchronous populate operation.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
- <summary>
- Serializes the XML node to a JSON string.
- </summary>
- <param name="node">The node to serialize.</param>
- <returns>A JSON string of the XmlNode.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
- <summary>
- Serializes the XML node to a JSON string using formatting.
- </summary>
- <param name="node">The node to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <returns>A JSON string of the XmlNode.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
- <summary>
- Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
- </summary>
- <param name="node">The node to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <param name="omitRootObject">Omits writing the root object.</param>
- <returns>A JSON string of the XmlNode.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
- <summary>
- Deserializes the XmlNode from a JSON string.
- </summary>
- <param name="value">The JSON string.</param>
- <returns>The deserialized XmlNode</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
- <summary>
- Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
- </summary>
- <param name="value">The JSON string.</param>
- <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
- <returns>The deserialized XmlNode</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
- <summary>
- Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
- and writes a .NET array attribute for collections.
- </summary>
- <param name="value">The JSON string.</param>
- <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
- <param name="writeArrayAttribute">
- 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.
- </param>
- <returns>The deserialized XmlNode</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
- <summary>
- Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
- </summary>
- <param name="node">The node to convert to JSON.</param>
- <returns>A JSON string of the XNode.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
- <summary>
- Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
- </summary>
- <param name="node">The node to convert to JSON.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <returns>A JSON string of the XNode.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
- <summary>
- Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
- </summary>
- <param name="node">The node to serialize.</param>
- <param name="formatting">Indicates how the output is formatted.</param>
- <param name="omitRootObject">Omits writing the root object.</param>
- <returns>A JSON string of the XNode.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
- <summary>
- Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
- </summary>
- <param name="value">The JSON string.</param>
- <returns>The deserialized XNode</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
- <summary>
- Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
- </summary>
- <param name="value">The JSON string.</param>
- <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
- <returns>The deserialized XNode</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
- <summary>
- Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
- and writes a .NET array attribute for collections.
- </summary>
- <param name="value">The JSON string.</param>
- <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
- <param name="writeArrayAttribute">
- 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.
- </param>
- <returns>The deserialized XNode</returns>
- </member>
- <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
- <summary>
- Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
- and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
- <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonConverterAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
- </summary>
- <param name="converterType">Type of the converter.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
- </summary>
- <param name="converterType">Type of the converter.</param>
- <param name="converterParameters">Parameter list to use when constructing the JsonConverter. Can be null.</param>
- </member>
- <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
- <summary>
- Gets the <see cref="T:System.Type"/> of the converter.
- </summary>
- <value>The <see cref="T:System.Type"/> of the converter.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
- <summary>
- The parameter list to use when constructing the JsonConverter described by ConverterType.
- If null, the default constructor is used.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonConverterCollection">
- <summary>
- Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
- </summary>
- <param name="id">The container Id.</param>
- </member>
- <member name="T:Newtonsoft.Json.JsonException">
- <summary>
- The exception thrown when an error occurs during JSON serialization or deserialization.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonException.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
- with a specified error message.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
- with a specified error message and a reference to the inner exception that is the cause of this exception.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
- </summary>
- <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
- <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
- <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
- <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
- </member>
- <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
- and write values during serialization.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
- <summary>
- Gets or sets a value that indicates whether to write extension data when serializing the object.
- </summary>
- <value>
- <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
- <summary>
- Gets or sets a value that indicates whether to read extension data when deserializing the object.
- </summary>
- <value>
- <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
- </value>
- </member>
- <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonObjectAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
- </summary>
- <param name="memberSerialization">The member serialization.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
- </summary>
- <param name="id">The container Id.</param>
- </member>
- <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
- <summary>
- Gets or sets the member serialization.
- </summary>
- <value>The member serialization.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
- <summary>
- Gets or sets a value that indicates whether the object's properties are required.
- </summary>
- <value>
- A value indicating whether the object's properties are required.
- </value>
- </member>
- <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
- </summary>
- <param name="propertyName">Name of the property.</param>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
- <summary>
- Gets or sets the converter used when serializing the property's collection items.
- </summary>
- <value>The collection's items converter.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
- <summary>
- The parameter list to use when constructing the JsonConverter described by ItemConverterType.
- If null, the default constructor is used.
- When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
- order, and type of these parameters.
- </summary>
- <example>
- [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
- </example>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
- <summary>
- Gets or sets the null value handling used when serializing this property.
- </summary>
- <value>The null value handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
- <summary>
- Gets or sets the default value handling used when serializing this property.
- </summary>
- <value>The default value handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
- <summary>
- Gets or sets the reference loop handling used when serializing this property.
- </summary>
- <value>The reference loop handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
- <summary>
- Gets or sets the object creation handling used when deserializing this property.
- </summary>
- <value>The object creation handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
- <summary>
- Gets or sets the type name handling used when serializing this property.
- </summary>
- <value>The type name handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
- <summary>
- Gets or sets whether this property's value is serialized as a reference.
- </summary>
- <value>Whether this property's value is serialized as a reference.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
- <summary>
- Gets or sets the order of serialization and deserialization of a member.
- </summary>
- <value>The numeric order of serialization or deserialization.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
- <summary>
- Gets or sets a value indicating whether this property is required.
- </summary>
- <value>
- A value indicating whether this property is required.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
- <summary>
- Gets or sets the name of the property.
- </summary>
- <value>The name of the property.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
- <summary>
- Gets or sets the the reference loop handling used when serializing the property's collection items.
- </summary>
- <value>The collection's items reference loop handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
- <summary>
- Gets or sets the the type name handling used when serializing the property's collection items.
- </summary>
- <value>The collection's items type name handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
- <summary>
- Gets or sets whether this property's collection items are serialized as a reference.
- </summary>
- <value>Whether this property's collection items are serialized as a reference.</value>
- </member>
- <member name="T:Newtonsoft.Json.JsonReaderException">
- <summary>
- The exception thrown when an error occurs while reading JSON text.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
- with a specified error message.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
- with a specified error message and a reference to the inner exception that is the cause of this exception.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
- </summary>
- <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
- <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
- <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
- <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
- </member>
- <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
- <summary>
- Gets the line number indicating where the error occurred.
- </summary>
- <value>The line number indicating where the error occurred.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
- <summary>
- Gets the line position indicating where the error occurred.
- </summary>
- <value>The line position indicating where the error occurred.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonReaderException.Path">
- <summary>
- Gets the path to the JSON where the error occurred.
- </summary>
- <value>The path to the JSON where the error occurred.</value>
- </member>
- <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
- <summary>
- Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and require the member has a value.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonSerializationException">
- <summary>
- The exception thrown when an error occurs during JSON serialization or deserialization.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
- with a specified error message.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
- with a specified error message and a reference to the inner exception that is the cause of this exception.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
- </summary>
- <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
- <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
- <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
- <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
- </member>
- <member name="T:Newtonsoft.Json.JsonSerializer">
- <summary>
- Serializes and deserializes objects into and from the JSON format.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Create">
- <summary>
- Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
- </summary>
- <returns>
- A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
- </summary>
- <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
- <returns>
- A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
- <summary>
- Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
- </summary>
- <returns>
- A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
- <summary>
- Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
- </summary>
- <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
- <returns>
- A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
- The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
- <summary>
- Populates the JSON values onto the target object.
- </summary>
- <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
- <param name="target">The target object to populate values onto.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
- <summary>
- Populates the JSON values onto the target object.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
- <param name="target">The target object to populate values onto.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
- <summary>
- Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
- <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
- <summary>
- Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>
- into an instance of the specified type.
- </summary>
- <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
- <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
- <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
- <summary>
- Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
- into an instance of the specified type.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
- <typeparam name="T">The type of the object to deserialize.</typeparam>
- <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
- <summary>
- Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
- into an instance of the specified type.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
- <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
- <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
- <summary>
- Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
- to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>.
- </summary>
- <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
- <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
- <summary>
- Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
- to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>.
- </summary>
- <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
- <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
- <param name="objectType">
- The type of the value being serialized.
- This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
- Specifing the type is optional.
- </param>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
- <summary>
- Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
- to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>.
- </summary>
- <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
- <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
- <param name="objectType">
- The type of the value being serialized.
- This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
- Specifing the type is optional.
- </param>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
- <summary>
- Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
- to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
- <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
- </member>
- <member name="E:Newtonsoft.Json.JsonSerializer.Error">
- <summary>
- Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
- <summary>
- Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
- <summary>
- Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
- <summary>
- Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
- </summary>
- <value>The trace writer.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
- <summary>
- Gets or sets the equality comparer used by the serializer when comparing references.
- </summary>
- <value>The equality comparer.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
- <summary>
- Gets or sets how type name writing and reading is handled by the serializer.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
- <summary>
- Gets or sets how a type name assembly is written and resolved by the serializer.
- </summary>
- <value>The type name assembly format.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
- <summary>
- Gets or sets how object references are preserved by the serializer.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
- <summary>
- Get or set how reference loops (e.g. a class referencing itself) is handled.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
- <summary>
- Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
- <summary>
- Get or set how null values are handled during serialization and deserialization.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
- <summary>
- Get or set how null default are handled during serialization and deserialization.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
- <summary>
- Gets or sets how objects are created during deserialization.
- </summary>
- <value>The object creation handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
- <summary>
- Gets or sets how constructors are used during deserialization.
- </summary>
- <value>The constructor handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
- <summary>
- Gets or sets how metadata properties are used during deserialization.
- </summary>
- <value>The metadata properties handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
- <summary>
- Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
- </summary>
- <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
- <summary>
- Gets or sets the contract resolver used by the serializer when
- serializing .NET objects to JSON and vice versa.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.Context">
- <summary>
- Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
- </summary>
- <value>The context.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
- <summary>
- Indicates how JSON text output is formatted.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
- <summary>
- Get or set how dates are written to JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
- <summary>
- Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
- <summary>
- Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
- <summary>
- Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
- <summary>
- Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
- <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
- are written as JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
- <summary>
- Get or set how strings are escaped when writing JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
- <summary>
- Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
- <summary>
- Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
- <summary>
- Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
- <summary>
- Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
- </summary>
- <value>
- <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:Newtonsoft.Json.JsonSerializerSettings">
- <summary>
- Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
- <summary>
- Gets or sets how reference loops (e.g. a class referencing itself) is handled.
- </summary>
- <value>Reference loop handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
- <summary>
- Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
- </summary>
- <value>Missing member handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
- <summary>
- Gets or sets how objects are created during deserialization.
- </summary>
- <value>The object creation handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
- <summary>
- Gets or sets how null values are handled during serialization and deserialization.
- </summary>
- <value>Null value handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
- <summary>
- Gets or sets how null default are handled during serialization and deserialization.
- </summary>
- <value>The default value handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
- <summary>
- Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
- </summary>
- <value>The converters.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
- <summary>
- Gets or sets how object references are preserved by the serializer.
- </summary>
- <value>The preserve references handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
- <summary>
- Gets or sets how type name writing and reading is handled by the serializer.
- </summary>
- <value>The type name handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
- <summary>
- Gets or sets how metadata properties are used during deserialization.
- </summary>
- <value>The metadata properties handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
- <summary>
- Gets or sets how a type name assembly is written and resolved by the serializer.
- </summary>
- <value>The type name assembly format.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
- <summary>
- Gets or sets how constructors are used during deserialization.
- </summary>
- <value>The constructor handling.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
- <summary>
- Gets or sets the contract resolver used by the serializer when
- serializing .NET objects to JSON and vice versa.
- </summary>
- <value>The contract resolver.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
- <summary>
- Gets or sets the equality comparer used by the serializer when comparing references.
- </summary>
- <value>The equality comparer.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
- <summary>
- Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
- </summary>
- <value>The reference resolver.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
- <summary>
- Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
- </summary>
- <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
- <summary>
- Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
- </summary>
- <value>The trace writer.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
- <summary>
- Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
- </summary>
- <value>The binder.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
- <summary>
- Gets or sets the error handler called during serialization and deserialization.
- </summary>
- <value>The error handler called during serialization and deserialization.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
- <summary>
- Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
- </summary>
- <value>The context.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
- <summary>
- Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
- <summary>
- Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
- <summary>
- Indicates how JSON text output is formatted.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
- <summary>
- Get or set how dates are written to JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
- <summary>
- Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
- <summary>
- Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
- <summary>
- Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
- <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
- are written as JSON.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
- <summary>
- Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
- <summary>
- Get or set how strings are escaped when writing JSON text.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
- <summary>
- Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
- <summary>
- Gets a value indicating whether there will be a check for additional content after deserializing an object.
- </summary>
- <value>
- <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="T:Newtonsoft.Json.JsonTextReader">
- <summary>
- Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
- </summary>
- <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.Read">
- <summary>
- Reads the next JSON token from the stream.
- </summary>
- <returns>
- true if the next token was read successfully; false if there are no more tokens to read.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
- </summary>
- <returns>
- A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.Close">
- <summary>
- Changes the state to closed.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
- <summary>
- Gets a value indicating whether the class can return line information.
- </summary>
- <returns>
- <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
- <summary>
- Gets the current line number.
- </summary>
- <value>
- The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
- </value>
- </member>
- <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
- <summary>
- Gets the current line position.
- </summary>
- <value>
- The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
- </value>
- </member>
- <member name="T:Newtonsoft.Json.JsonTextWriter">
- <summary>
- Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
- <summary>
- Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>.
- </summary>
- <param name="textWriter">The <c>TextWriter</c> to write to.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
- <summary>
- Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
- <summary>
- Closes this stream and the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
- <summary>
- Writes the beginning of a JSON object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
- <summary>
- Writes the beginning of a JSON array.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
- <summary>
- Writes the start of a constructor with the given name.
- </summary>
- <param name="name">The name of the constructor.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
- <summary>
- Writes the specified end token.
- </summary>
- <param name="token">The end token to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
- <summary>
- Writes the property name of a name/value pair on a JSON object.
- </summary>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
- <summary>
- Writes the property name of a name/value pair on a JSON object.
- </summary>
- <param name="name">The name of the property.</param>
- <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
- <summary>
- Writes indent characters.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
- <summary>
- Writes the JSON value delimiter.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
- <summary>
- Writes an indent space.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
- <summary>
- Writes a <see cref="T:System.Object"/> value.
- An error will raised if the value cannot be written as a single JSON token.
- </summary>
- <param name="value">The <see cref="T:System.Object"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
- <summary>
- Writes a null value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
- <summary>
- Writes an undefined value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
- <summary>
- Writes raw JSON.
- </summary>
- <param name="json">The raw JSON to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
- <summary>
- Writes a <see cref="T:System.String"/> value.
- </summary>
- <param name="value">The <see cref="T:System.String"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
- <summary>
- Writes a <see cref="T:System.Int32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
- <summary>
- Writes a <see cref="T:System.UInt32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
- <summary>
- Writes a <see cref="T:System.Int64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
- <summary>
- Writes a <see cref="T:System.UInt64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
- <summary>
- Writes a <see cref="T:System.Single"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Single"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
- <summary>
- Writes a <see cref="T:System.Double"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Double"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
- <summary>
- Writes a <see cref="T:System.Nullable`1"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
- <summary>
- Writes a <see cref="T:System.Boolean"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
- <summary>
- Writes a <see cref="T:System.Int16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
- <summary>
- Writes a <see cref="T:System.UInt16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
- <summary>
- Writes a <see cref="T:System.Char"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Char"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
- <summary>
- Writes a <see cref="T:System.Byte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
- <summary>
- Writes a <see cref="T:System.SByte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
- <summary>
- Writes a <see cref="T:System.Decimal"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
- <summary>
- Writes a <see cref="T:System.DateTime"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
- <summary>
- Writes a <see cref="T:System.Byte"/>[] value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
- <summary>
- Writes a <see cref="T:System.DateTimeOffset"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
- <summary>
- Writes a <see cref="T:System.Guid"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
- <summary>
- Writes a <see cref="T:System.TimeSpan"/> value.
- </summary>
- <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
- <summary>
- Writes a <see cref="T:System.Uri"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
- <summary>
- Writes out a comment <code>/*...*/</code> containing the specified text.
- </summary>
- <param name="text">Text to place inside the comment.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
- <summary>
- Writes out the given white space.
- </summary>
- <param name="ws">The string of white space characters.</param>
- </member>
- <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
- <summary>
- Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
- <summary>
- Gets or sets which character to use to quote attribute values.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
- <summary>
- Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
- <summary>
- Gets or sets a value indicating whether object names will be surrounded with quotes.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonToken">
- <summary>
- Specifies the type of JSON token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.None">
- <summary>
- This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a <see cref="M:Newtonsoft.Json.JsonReader.Read"/> method has not been called.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.StartObject">
- <summary>
- An object start token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.StartArray">
- <summary>
- An array start token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
- <summary>
- A constructor start token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
- <summary>
- An object property name.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Comment">
- <summary>
- A comment.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Raw">
- <summary>
- Raw JSON.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Integer">
- <summary>
- An integer.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Float">
- <summary>
- A float.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.String">
- <summary>
- A string.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Boolean">
- <summary>
- A boolean.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Null">
- <summary>
- A null token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Undefined">
- <summary>
- An undefined token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.EndObject">
- <summary>
- An object end token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.EndArray">
- <summary>
- An array end token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
- <summary>
- A constructor end token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Date">
- <summary>
- A Date.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.JsonToken.Bytes">
- <summary>
- Byte data.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.JsonValidatingReader">
- <summary>
- <para>
- Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
- </para>
- <note type="caution">
- JSON Schema validation has been moved to its own package. See <see href="http://www.newtonsoft.com/jsonschema">http://www.newtonsoft.com/jsonschema</see> for more details.
- </note>
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
- validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
- </summary>
- <returns>
- A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
- <summary>
- Reads the next JSON token from the stream.
- </summary>
- <returns>
- true if the next token was read successfully; false if there are no more tokens to read.
- </returns>
- </member>
- <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
- <summary>
- Sets an event handler for receiving schema validation errors.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
- <summary>
- Gets the text value of the current JSON token.
- </summary>
- <value></value>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
- <summary>
- Gets the depth of the current token in the JSON document.
- </summary>
- <value>The depth of the current token in the JSON document.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
- <summary>
- Gets the path of the current JSON token.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
- <summary>
- Gets the quotation mark character used to enclose the value of a string.
- </summary>
- <value></value>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
- <summary>
- Gets the type of the current JSON token.
- </summary>
- <value></value>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
- <summary>
- Gets the Common Language Runtime (CLR) type for the current JSON token.
- </summary>
- <value></value>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
- <summary>
- Gets or sets the schema.
- </summary>
- <value>The schema.</value>
- </member>
- <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
- </summary>
- <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
- </member>
- <member name="T:Newtonsoft.Json.JsonWriterException">
- <summary>
- The exception thrown when an error occurs while reading JSON text.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
- with a specified error message.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
- with a specified error message and a reference to the inner exception that is the cause of this exception.
- </summary>
- <param name="message">The error message that explains the reason for the exception.</param>
- <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
- </member>
- <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
- </summary>
- <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
- <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
- <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
- <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
- </member>
- <member name="P:Newtonsoft.Json.JsonWriterException.Path">
- <summary>
- Gets the path to the JSON where the error occurred.
- </summary>
- <value>The path to the JSON where the error occurred.</value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.Extensions">
- <summary>
- Contains the LINQ to JSON extension methods.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Returns a collection of tokens that contains the ancestors of every token in the source collection.
- </summary>
- <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
- </summary>
- <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, the ancestors of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Returns a collection of tokens that contains the descendants of every token in the source collection.
- </summary>
- <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
- </summary>
- <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains every token in the source collection, and the descendants of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
- <summary>
- Returns a collection of child properties of every object in the source collection.
- </summary>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JObject"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> that contains the properties of every object in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
- <summary>
- Returns a collection of child values of every object in the source collection with the given key.
- </summary>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <param name="key">The token key.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection with the given key.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
- <summary>
- Returns a collection of child values of every object in the source collection.
- </summary>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
- <summary>
- Returns a collection of converted child values of every object in the source collection with the given key.
- </summary>
- <typeparam name="U">The type to convert the values to.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <param name="key">The token key.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection with the given key.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
- <summary>
- Returns a collection of converted child values of every object in the source collection.
- </summary>
- <typeparam name="U">The type to convert the values to.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
- <summary>
- Converts the value.
- </summary>
- <typeparam name="U">The type to convert the value to.</typeparam>
- <param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken"/> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
- <returns>A converted value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Converts the value.
- </summary>
- <typeparam name="T">The source collection type.</typeparam>
- <typeparam name="U">The type to convert the value to.</typeparam>
- <param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken"/> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
- <returns>A converted value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Returns a collection of child tokens of every array in the source collection.
- </summary>
- <typeparam name="T">The source collection type.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Returns a collection of converted child tokens of every array in the source collection.
- </summary>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <typeparam name="U">The type to convert the values to.</typeparam>
- <typeparam name="T">The source collection type.</typeparam>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
- <summary>
- Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
- </summary>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
- <summary>
- Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
- </summary>
- <typeparam name="T">The source collection type.</typeparam>
- <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the source collection.</param>
- <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
- </member>
- <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
- <summary>
- Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
- </summary>
- <typeparam name="T">The type of token</typeparam>
- </member>
- <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JArray">
- <summary>
- Represents a JSON array.
- </summary>
- <example>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
- </example>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JContainer">
- <summary>
- Represents a token that can contain other tokens.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JToken">
- <summary>
- Represents an abstract JSON token.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
- <summary>
- Compares the values of two tokens, including the values of all descendant tokens.
- </summary>
- <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
- <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
- <returns>true if the tokens are equal; otherwise false.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
- <summary>
- Adds the specified content immediately after this token.
- </summary>
- <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
- <summary>
- Adds the specified content immediately before this token.
- </summary>
- <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
- <summary>
- Returns a collection of the ancestor tokens of this token.
- </summary>
- <returns>A collection of the ancestor tokens of this token.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
- <summary>
- Returns a collection of tokens that contain this token, and the ancestors of this token.
- </summary>
- <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
- <summary>
- Returns a collection of the sibling tokens after this token, in document order.
- </summary>
- <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
- <summary>
- Returns a collection of the sibling tokens before this token, in document order.
- </summary>
- <returns>A collection of the sibling tokens before this token, in document order.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
- </summary>
- <typeparam name="T">The type to convert the token to.</typeparam>
- <param name="key">The token key.</param>
- <returns>The converted token value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Children">
- <summary>
- Returns a collection of the child tokens of this token, in document order.
- </summary>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
- <summary>
- Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
- </summary>
- <typeparam name="T">The type to filter the child tokens on.</typeparam>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
- <summary>
- Returns a collection of the child values of this token, in document order.
- </summary>
- <typeparam name="T">The type to convert the values to.</typeparam>
- <returns>A <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the child values of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
- <summary>
- Removes this token from its parent.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
- <summary>
- Replaces this token with the specified token.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
- <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
- <summary>
- Returns the indented JSON for this token.
- </summary>
- <returns>
- The indented JSON for this token.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Returns the JSON for this token using the given formatting and converters.
- </summary>
- <param name="formatting">Indicates how the output is formatted.</param>
- <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
- <returns>The JSON for this token using the given formatting and converters.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
- <summary>
- Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
- </summary>
- <param name="value">The value.</param>
- <returns>The result of the conversion.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
- <summary>
- Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
- <summary>
- Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
- </summary>
- <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
- </summary>
- <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
- <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
- <summary>
- Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
- <returns>The new object created from the JSON value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
- <summary>
- Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="objectType">The object type that the token will be deserialized to.</param>
- <returns>The new object created from the JSON value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
- <summary>
- Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
- <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
- <returns>The new object created from the JSON value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- <param name="objectType">The object type that the token will be deserialized to.</param>
- <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
- <returns>The new object created from the JSON value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">An <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
- <returns>
- An <see cref="T:Newtonsoft.Json.Linq.JToken"/> 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.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
- <summary>
- Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
- </summary>
- <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">An <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
- <returns>
- An <see cref="T:Newtonsoft.Json.Linq.JToken"/> 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.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
- <summary>
- Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
- </summary>
- <param name="path">
- A <see cref="T:System.String"/> that contains a JPath expression.
- </param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
- <summary>
- Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
- </summary>
- <param name="path">
- A <see cref="T:System.String"/> that contains a JPath expression.
- </param>
- <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
- <summary>
- Selects a collection of elements using a JPath expression.
- </summary>
- <param name="path">
- A <see cref="T:System.String"/> that contains a JPath expression.
- </param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
- <summary>
- Selects a collection of elements using a JPath expression.
- </summary>
- <param name="path">
- A <see cref="T:System.String"/> that contains a JPath expression.
- </param>
- <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
- <summary>
- Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
- </summary>
- <param name="parameter">The expression tree representation of the runtime value.</param>
- <returns>
- The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
- <summary>
- Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
- </summary>
- <param name="parameter">The expression tree representation of the runtime value.</param>
- <returns>
- The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
- <summary>
- Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
- </summary>
- <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
- <summary>
- Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="annotation">The annotation to add.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
- <summary>
- Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <typeparam name="T">The type of the annotation to retrieve.</typeparam>
- <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
- <summary>
- Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
- <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
- <summary>
- Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <typeparam name="T">The type of the annotations to retrieve.</typeparam>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
- <summary>
- Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Object"/> that contains the annotations that match the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
- <summary>
- Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <typeparam name="T">The type of annotations to remove.</typeparam>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
- <summary>
- Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
- <summary>
- Gets a comparer that can compare two tokens for value equality.
- </summary>
- <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
- <summary>
- Gets or sets the parent.
- </summary>
- <value>The parent.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Root">
- <summary>
- Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Type">
- <summary>
- Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <value>The type.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
- <summary>
- Gets a value indicating whether this token has child tokens.
- </summary>
- <value>
- <c>true</c> if this token has child values; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Next">
- <summary>
- Gets the next sibling token of this node.
- </summary>
- <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
- <summary>
- Gets the previous sibling token of this node.
- </summary>
- <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Path">
- <summary>
- Gets the path of the JSON token.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
- </summary>
- <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.First">
- <summary>
- Get the first child token of this token.
- </summary>
- <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JToken.Last">
- <summary>
- Get the last child token of this token.
- </summary>
- <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
- <summary>
- Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
- </summary>
- <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
- <summary>
- Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
- </summary>
- <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
- <summary>
- Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
- </summary>
- <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
- <summary>
- Returns a collection of the child tokens of this token, in document order.
- </summary>
- <returns>
- An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the child tokens of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
- <summary>
- Returns a collection of the child values of this token, in document order.
- </summary>
- <typeparam name="T">The type to convert the values to.</typeparam>
- <returns>
- A <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the child values of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>, in document order.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
- <summary>
- Returns a collection of the descendant tokens for this token in document order.
- </summary>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
- <summary>
- Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
- </summary>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
- <summary>
- Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="content">The content to be added.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
- <summary>
- Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="content">The content to be added.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
- <summary>
- Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
- <summary>
- Replaces the children nodes of this token with the specified content.
- </summary>
- <param name="content">The content.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
- <summary>
- Removes the child nodes from this token.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
- <summary>
- Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <param name="content">The content to be merged.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
- <summary>
- Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
- </summary>
- <param name="content">The content to be merged.</param>
- <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
- </member>
- <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
- <summary>
- Occurs when the list changes or an item in the list changes.
- </summary>
- </member>
- <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
- <summary>
- Occurs before an item is added to the collection.
- </summary>
- </member>
- <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
- <summary>
- Occurs when the items list of the collection has changed, or the collection is reset.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
- <summary>
- Gets the container's children tokens.
- </summary>
- <value>The container's children tokens.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
- <summary>
- Gets a value indicating whether this token has child tokens.
- </summary>
- <value>
- <c>true</c> if this token has child values; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JContainer.First">
- <summary>
- Get the first child token of this token.
- </summary>
- <value>
- A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
- <summary>
- Get the last child token of this token.
- </summary>
- <value>
- A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
- <summary>
- Gets the count of child JSON tokens.
- </summary>
- <value>The count of child JSON tokens</value>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
- </summary>
- <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
- </summary>
- <param name="content">The contents of the array.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
- </summary>
- <param name="content">The contents of the array.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
- <summary>
- Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
- <summary>
- Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
- </summary>
- <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
- <example>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
- </example>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
- </summary>
- <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
- </summary>
- <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
- <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
- <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
- <summary>
- Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
- </summary>
- <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
- <returns>
- The index of <paramref name="item"/> if found in the list; otherwise, -1.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
- <summary>
- Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
- </summary>
- <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
- <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
- <exception cref="T:System.ArgumentOutOfRangeException">
- <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
- <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
- <summary>
- Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
- </summary>
- <param name="index">The zero-based index of the item to remove.</param>
- <exception cref="T:System.ArgumentOutOfRangeException">
- <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
- <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
- <summary>
- Returns an enumerator that iterates through the collection.
- </summary>
- <returns>
- A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
- <summary>
- Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
- </summary>
- <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
- <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
- <summary>
- Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
- </summary>
- <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
- <summary>
- Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
- </summary>
- <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
- <returns>
- true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
- <summary>
- Copies to.
- </summary>
- <param name="array">The array.</param>
- <param name="arrayIndex">Index of the array.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
- <summary>
- Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
- </summary>
- <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
- <returns>
- true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
- </returns>
- <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
- <summary>
- Gets the container's children tokens.
- </summary>
- <value>The container's children tokens.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JArray.Type">
- <summary>
- Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <value>The type.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
- </summary>
- <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
- <summary>
- Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
- </summary>
- <value></value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
- <summary>
- Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
- </summary>
- <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JConstructor">
- <summary>
- Represents a JSON constructor.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
- </summary>
- <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
- </summary>
- <param name="name">The constructor name.</param>
- <param name="content">The contents of the constructor.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
- </summary>
- <param name="name">The constructor name.</param>
- <param name="content">The contents of the constructor.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
- </summary>
- <param name="name">The constructor name.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
- <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
- <summary>
- Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/>.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
- <summary>
- Gets the container's children tokens.
- </summary>
- <value>The container's children tokens.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
- <summary>
- Gets or sets the name of this constructor.
- </summary>
- <value>The constructor name.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
- <summary>
- Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <value>The type.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
- </summary>
- <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
- <summary>
- Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
- </summary>
- <typeparam name="T">The type of token</typeparam>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
- <summary>
- An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
- </summary>
- <param name="enumerable">The enumerable.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
- <summary>
- Returns an enumerator that iterates through the collection.
- </summary>
- <returns>
- A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
- <summary>
- Returns an enumerator that iterates through a collection.
- </summary>
- <returns>
- An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
- <summary>
- Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
- </summary>
- <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
- <returns>
- <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
- <summary>
- Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
- </summary>
- <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
- <returns>
- <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
- <summary>
- Returns a hash code for this instance.
- </summary>
- <returns>
- A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
- </summary>
- <value></value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JObject">
- <summary>
- Represents a JSON object.
- </summary>
- <example>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
- </example>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
- </summary>
- <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
- </summary>
- <param name="content">The contents of the object.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
- </summary>
- <param name="content">The contents of the object.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
- <summary>
- Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
- </summary>
- <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
- <summary>
- Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
- </summary>
- <param name="name">The property name.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
- <summary>
- Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
- </summary>
- <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
- <summary>
- Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
- <summary>
- Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
- </summary>
- <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
- <example>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>
- </example>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
- </summary>
- <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
- </summary>
- <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
- <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
- <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
- </summary>
- <param name="propertyName">Name of the property.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
- The exact property name will be searched for first and if no matching property is found then
- the <see cref="T:System.StringComparison"/> will be used to match a property.
- </summary>
- <param name="propertyName">Name of the property.</param>
- <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
- <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
- <summary>
- Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
- The exact property name will be searched for first and if no matching property is found then
- the <see cref="T:System.StringComparison"/> will be used to match a property.
- </summary>
- <param name="propertyName">Name of the property.</param>
- <param name="value">The value.</param>
- <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
- <returns>true if a value was successfully retrieved; otherwise, false.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
- <summary>
- Adds the specified property name.
- </summary>
- <param name="propertyName">Name of the property.</param>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
- <summary>
- Removes the property with the specified name.
- </summary>
- <param name="propertyName">Name of the property.</param>
- <returns>true if item was successfully removed; otherwise, false.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
- <summary>
- Tries the get value.
- </summary>
- <param name="propertyName">Name of the property.</param>
- <param name="value">The value.</param>
- <returns>true if a value was successfully retrieved; otherwise, false.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
- <summary>
- Returns an enumerator that iterates through the collection.
- </summary>
- <returns>
- A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
- <summary>
- Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
- </summary>
- <param name="propertyName">Name of the property.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
- <summary>
- Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
- </summary>
- <param name="propertyName">Name of the property.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
- <summary>
- Returns the properties for this instance of a component.
- </summary>
- <returns>
- A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
- <summary>
- Returns the properties for this instance of a component using the attribute array as a filter.
- </summary>
- <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
- <returns>
- A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
- <summary>
- Returns a collection of custom attributes for this instance of a component.
- </summary>
- <returns>
- An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
- <summary>
- Returns the class name of this instance of a component.
- </summary>
- <returns>
- The class name of the object, or null if the class does not have a name.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
- <summary>
- Returns the name of this instance of a component.
- </summary>
- <returns>
- The name of the object, or null if the object does not have a name.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
- <summary>
- Returns a type converter for this instance of a component.
- </summary>
- <returns>
- A <see cref="T:System.ComponentModel.TypeConverter"/> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"/> for this object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
- <summary>
- Returns the default event for this instance of a component.
- </summary>
- <returns>
- An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
- <summary>
- Returns the default property for this instance of a component.
- </summary>
- <returns>
- A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
- <summary>
- Returns an editor of the specified type for this instance of a component.
- </summary>
- <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
- <returns>
- An <see cref="T:System.Object"/> of the specified type that is the editor for this object, or null if the editor cannot be found.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
- <summary>
- Returns the events for this instance of a component using the specified attribute array as a filter.
- </summary>
- <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
- <returns>
- An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
- <summary>
- Returns the events for this instance of a component.
- </summary>
- <returns>
- An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
- <summary>
- Returns an object that contains the property described by the specified property descriptor.
- </summary>
- <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
- <returns>
- An <see cref="T:System.Object"/> that represents the owner of the specified property.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
- <summary>
- Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
- </summary>
- <param name="parameter">The expression tree representation of the runtime value.</param>
- <returns>
- The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
- <summary>
- Gets the container's children tokens.
- </summary>
- <value>The container's children tokens.</value>
- </member>
- <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
- <summary>
- Occurs when a property value changes.
- </summary>
- </member>
- <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
- <summary>
- Occurs when a property value is changing.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JObject.Type">
- <summary>
- Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <value>The type.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
- </summary>
- <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
- <summary>
- Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
- </summary>
- <value></value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
- <summary>
- Specifies the settings used when merging JSON.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
- <summary>
- Gets or sets the method used when merging JSON arrays.
- </summary>
- <value>The method used when merging JSON arrays.</value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JProperty">
- <summary>
- Represents a JSON property.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
- </summary>
- <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
- </summary>
- <param name="name">The property name.</param>
- <param name="content">The property content.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
- </summary>
- <param name="name">The property name.</param>
- <param name="content">The property content.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
- <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
- <summary>
- Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
- </summary>
- <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
- <summary>
- Gets the container's children tokens.
- </summary>
- <value>The container's children tokens.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
- <summary>
- Gets the property name.
- </summary>
- <value>The property name.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
- <summary>
- Gets or sets the property value.
- </summary>
- <value>The property value.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
- <summary>
- Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <value>The type.</value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
- <summary>
- Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
- </summary>
- <param name="name">The name.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
- <summary>
- When overridden in a derived class, returns whether resetting an object changes its value.
- </summary>
- <returns>
- true if resetting the component changes its value; otherwise, false.
- </returns>
- <param name="component">The component to test for reset capability.
- </param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
- <summary>
- When overridden in a derived class, gets the current value of the property on a component.
- </summary>
- <returns>
- The value of a property for a given component.
- </returns>
- <param name="component">The component with the property for which to retrieve the value.
- </param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
- <summary>
- When overridden in a derived class, resets the value for this property of the component to the default value.
- </summary>
- <param name="component">The component with the property value that is to be reset to the default value.
- </param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
- <summary>
- When overridden in a derived class, sets the value of the component to a different value.
- </summary>
- <param name="component">The component with the property value that is to be set.
- </param><param name="value">The new value.
- </param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
- <summary>
- When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
- </summary>
- <returns>
- true if the property should be persisted; otherwise, false.
- </returns>
- <param name="component">The component with the property to be examined for persistence.
- </param>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
- <summary>
- When overridden in a derived class, gets the type of the component this property is bound to.
- </summary>
- <returns>
- A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
- <summary>
- When overridden in a derived class, gets a value indicating whether this property is read-only.
- </summary>
- <returns>
- true if the property is read-only; otherwise, false.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
- <summary>
- When overridden in a derived class, gets the type of the property.
- </summary>
- <returns>
- A <see cref="T:System.Type"/> that represents the type of the property.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
- <summary>
- Gets the hash code for the name of the member.
- </summary>
- <value></value>
- <returns>
- The hash code for the name of the member.
- </returns>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JRaw">
- <summary>
- Represents a raw JSON string.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JValue">
- <summary>
- Represents a value in JSON (string, integer, date, etc).
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
- </summary>
- <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
- </summary>
- <param name="value">The value.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
- </summary>
- <param name="value">The value.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
- </summary>
- <param name="value">The value.</param>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
- </summary>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
- <summary>
- Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
- </summary>
- <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
- <summary>
- Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
- </summary>
- <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
- <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
- <summary>
- Indicates whether the current object is equal to another object of the same type.
- </summary>
- <returns>
- true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
- </returns>
- <param name="other">An object to compare with this object.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
- <summary>
- Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
- </summary>
- <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
- <returns>
- true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
- </returns>
- <exception cref="T:System.NullReferenceException">
- The <paramref name="obj"/> parameter is null.
- </exception>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
- <summary>
- Serves as a hash function for a particular type.
- </summary>
- <returns>
- A hash code for the current <see cref="T:System.Object"/>.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
- <summary>
- Returns a <see cref="T:System.String"/> that represents this instance.
- </summary>
- <returns>
- A <see cref="T:System.String"/> that represents this instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
- <summary>
- Returns a <see cref="T:System.String"/> that represents this instance.
- </summary>
- <param name="format">The format.</param>
- <returns>
- A <see cref="T:System.String"/> that represents this instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
- <summary>
- Returns a <see cref="T:System.String"/> that represents this instance.
- </summary>
- <param name="formatProvider">The format provider.</param>
- <returns>
- A <see cref="T:System.String"/> that represents this instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
- <summary>
- Returns a <see cref="T:System.String"/> that represents this instance.
- </summary>
- <param name="format">The format.</param>
- <param name="formatProvider">The format provider.</param>
- <returns>
- A <see cref="T:System.String"/> that represents this instance.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
- <summary>
- Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
- </summary>
- <param name="parameter">The expression tree representation of the runtime value.</param>
- <returns>
- The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
- <summary>
- 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.
- </summary>
- <param name="obj">An object to compare with this instance.</param>
- <returns>
- 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 <paramref name="obj"/>.
- Zero
- This instance is equal to <paramref name="obj"/>.
- Greater than zero
- This instance is greater than <paramref name="obj"/>.
- </returns>
- <exception cref="T:System.ArgumentException">
- <paramref name="obj"/> is not the same type as this instance.
- </exception>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
- <summary>
- Gets a value indicating whether this token has child tokens.
- </summary>
- <value>
- <c>true</c> if this token has child values; otherwise, <c>false</c>.
- </value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JValue.Type">
- <summary>
- Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
- </summary>
- <value>The type.</value>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JValue.Value">
- <summary>
- Gets or sets the underlying token value.
- </summary>
- <value>The underlying token value.</value>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
- </summary>
- <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
- </summary>
- <param name="rawJson">The raw json.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
- <summary>
- Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
- </summary>
- <param name="reader">The reader.</param>
- <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
- <summary>
- Compares tokens to determine whether they are equal.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
- <summary>
- Determines whether the specified objects are equal.
- </summary>
- <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
- <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
- <returns>
- true if the specified objects are equal; otherwise, false.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
- <summary>
- Returns a hash code for the specified object.
- </summary>
- <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
- <returns>A hash code for the specified object.</returns>
- <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JTokenReader">
- <summary>
- Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
- </summary>
- <param name="token">The token to read from.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
- </summary>
- <returns>
- A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
- </returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
- <summary>
- Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
- </summary>
- <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
- <summary>
- Reads the next JSON token from the stream.
- </summary>
- <returns>
- true if the next token was read successfully; false if there are no more tokens to read.
- </returns>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
- <summary>
- Gets the path of the current JSON token.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JTokenType">
- <summary>
- Specifies the type of token.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
- <summary>
- No token type has been set.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
- <summary>
- A JSON object.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
- <summary>
- A JSON array.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
- <summary>
- A JSON constructor.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
- <summary>
- A JSON object property.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
- <summary>
- A comment.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
- <summary>
- An integer value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
- <summary>
- A float value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
- <summary>
- A string value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
- <summary>
- A boolean value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
- <summary>
- A null value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
- <summary>
- An undefined value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
- <summary>
- A date value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
- <summary>
- A raw JSON value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
- <summary>
- A collection of bytes value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
- <summary>
- A Guid value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
- <summary>
- A Uri value.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
- <summary>
- A TimeSpan value.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
- <summary>
- Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class writing to the given <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
- </summary>
- <param name="container">The container being written to.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
- <summary>
- Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
- <summary>
- Closes this stream and the underlying stream.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
- <summary>
- Writes the beginning of a JSON object.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
- <summary>
- Writes the beginning of a JSON array.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
- <summary>
- Writes the start of a constructor with the given name.
- </summary>
- <param name="name">The name of the constructor.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
- <summary>
- Writes the end.
- </summary>
- <param name="token">The token.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
- <summary>
- Writes the property name of a name/value pair on a JSON object.
- </summary>
- <param name="name">The name of the property.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
- <summary>
- Writes a <see cref="T:System.Object"/> value.
- An error will raised if the value cannot be written as a single JSON token.
- </summary>
- <param name="value">The <see cref="T:System.Object"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
- <summary>
- Writes a null value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
- <summary>
- Writes an undefined value.
- </summary>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
- <summary>
- Writes raw JSON.
- </summary>
- <param name="json">The raw JSON to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
- <summary>
- Writes out a comment <code>/*...*/</code> containing the specified text.
- </summary>
- <param name="text">Text to place inside the comment.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
- <summary>
- Writes a <see cref="T:System.String"/> value.
- </summary>
- <param name="value">The <see cref="T:System.String"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
- <summary>
- Writes a <see cref="T:System.Int32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
- <summary>
- Writes a <see cref="T:System.UInt32"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
- <summary>
- Writes a <see cref="T:System.Int64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
- <summary>
- Writes a <see cref="T:System.UInt64"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
- <summary>
- Writes a <see cref="T:System.Single"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Single"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
- <summary>
- Writes a <see cref="T:System.Double"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Double"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
- <summary>
- Writes a <see cref="T:System.Boolean"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
- <summary>
- Writes a <see cref="T:System.Int16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
- <summary>
- Writes a <see cref="T:System.UInt16"/> value.
- </summary>
- <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
- <summary>
- Writes a <see cref="T:System.Char"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Char"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
- <summary>
- Writes a <see cref="T:System.Byte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
- <summary>
- Writes a <see cref="T:System.SByte"/> value.
- </summary>
- <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
- <summary>
- Writes a <see cref="T:System.Decimal"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
- <summary>
- Writes a <see cref="T:System.DateTime"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
- <summary>
- Writes a <see cref="T:System.DateTimeOffset"/> value.
- </summary>
- <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
- <summary>
- Writes a <see cref="T:System.Byte"/>[] value.
- </summary>
- <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
- <summary>
- Writes a <see cref="T:System.TimeSpan"/> value.
- </summary>
- <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
- <summary>
- Writes a <see cref="T:System.Guid"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
- </member>
- <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
- <summary>
- Writes a <see cref="T:System.Uri"/> value.
- </summary>
- <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
- <summary>
- Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
- </summary>
- </member>
- <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
- <summary>
- Gets the token being writen.
- </summary>
- <value>The token being writen.</value>
- </member>
- <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
- <summary>
- Specifies how JSON arrays are merged together.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
- <summary>Concatenate arrays.</summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
- <summary>Union arrays, skipping items that already exist.</summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
- <summary>Replace all array items.</summary>
- </member>
- <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
- <summary>Merge array items together, matched by index.</summary>
- </member>
- <member name="T:Newtonsoft.Json.MemberSerialization">
- <summary>
- Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
- <summary>
- All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
- This is the default member serialization mode.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
- <summary>
- Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
- This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
- <summary>
- All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
- This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
- and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
- <summary>
- Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
- <summary>
- Read metadata properties located at the start of a JSON object.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
- <summary>
- Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
- <summary>
- Do not try to read metadata properties.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.MissingMemberHandling">
- <summary>
- Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
- <summary>
- Ignore a missing member and do not attempt to deserialize it.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
- <summary>
- Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.NullValueHandling">
- <summary>
- Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- <example>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
- <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
- </example>
- </member>
- <member name="F:Newtonsoft.Json.NullValueHandling.Include">
- <summary>
- Include null values when serializing and deserializing objects.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
- <summary>
- Ignore null values when serializing and deserializing objects.
- </summary>
- </member>
- <member name="T:Newtonsoft.Json.ObjectCreationHandling">
- <summary>
- Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
- <summary>
- Reuse existing objects, create new objects when needed.
- </summary>
- </member>
- <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
- <summary>
- Only reuse existing objects.
- </summary>