<?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="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="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="T:Newtonsoft.Json.Bson.BsonReader">
<summary>
Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data.
</summary>
</member>
<member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
<summary>
Gets or sets a value indicating whether binary data reading should be 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="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 <see cref="T:System.IO.Stream"/> containing the BSON data to read.</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 <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</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 <see cref="T:System.IO.Stream"/> containing the BSON data to read.</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 <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</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.Read">
<summary>
Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>.
</summary>
<returns>
<c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
</returns>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
<summary>
Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
</summary>
</member>
<member name="T:Newtonsoft.Json.Bson.BsonWriter">
<summary>
Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
</summary>
</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="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 <see cref="T:System.IO.Stream"/> to write to.</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 <see cref="T:System.IO.BinaryWriter"/> to write to.</param>
</member>
<member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
<summary>
Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> 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 a comment <c>/*...*/</c> 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 ra
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
网盘助手.zip (21个子文件)
网盘助手
MicrosoftEdgeWebview2Setup.exe 1.7MB
ndp48-web.exe 1.41MB
Microsoft.Web.WebView2.WinForms.dll 32KB
runtimes
win-arm64
native
WebView2Loader.dll 121KB
win-x64
native
WebView2Loader.dll 134KB
win-x86
native
WebView2Loader.dll 108KB
Microsoft.Web.WebView2.Core.dll 217KB
BaiDuDiskTrans.exe 85KB
Microsoft.Web.WebView2.Wpf.xml 65KB
Microsoft.Web.WebView2.Core.xml 237KB
SpiderBase.pdb 41KB
SpiderBase.dll 829KB
BaiDuDiskTrans.pdb 180KB
Microsoft.Web.WebView2.Wpf.dll 36KB
GYControls.dll 35KB
Newtonsoft.Json.xml 683KB
BaiDuDiskTrans.exe.config 187B
Newtonsoft.Json.pdb 244KB
GYControls.pdb 106KB
Newtonsoft.Json.dll 659KB
Microsoft.Web.WebView2.WinForms.xml 28KB
共 21 条
- 1
资源评论
好看资源网
- 粉丝: 2390
- 资源: 188
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源码)基于Spring Boot框架的博客系统.zip
- (源码)基于Spring Boot框架的博客管理系统.zip
- (源码)基于ESP8266和Blynk的IR设备控制系统.zip
- (源码)基于Java和JSP的校园论坛系统.zip
- (源码)基于ROS Kinetic框架的AGV激光雷达导航与SLAM系统.zip
- (源码)基于PythonDjango框架的资产管理系统.zip
- (源码)基于计算机系统原理与Arduino技术的学习平台.zip
- (源码)基于SSM框架的大学消息通知系统服务端.zip
- (源码)基于Java Servlet的学生信息管理系统.zip
- (源码)基于Qt和AVR的FestosMechatronics系统终端.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功