diff --git a/README.md b/README.md index 5a59d78..1ce122d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ -# VPet.Plugin.DemoClock +# VPet.Plugin.Demo +由开发者制作的桌宠插件案例 +* DemoClock: 给桌宠添加一个时钟显示的功能 +* EdgeTTS: 桌宠说话的时候附带语音,使用EdgeTTS + +## VPet.Plugin.DemoClock 给桌宠添加一个时钟显示的功能,这算是代码嵌入类型MOD的DEMO ![democlock](democlock.png) @@ -44,3 +49,23 @@ 游戏设置窗口 ![image-20230411134959369](README.assets/image-20230411134959369.png) + +## VPet.Plugin.EdgeTTS + +桌宠说话的时候附带语音,使用EdgeTTS + +![edgetts](edgetts.png) + +参考本软件即可编写自己的代码MOD + +### 功能 + +让桌宠说话的时候说出来 + +* 支持自定义讲述人和语音语调语速等 + +### 相关截图 + +游戏设置窗口 + +![image-20230411134959369](README.assets/image-20230411134959369.png) diff --git a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.dll b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.dll index dc9c8ee..2f5c1a0 100644 Binary files a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.dll and b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.dll differ diff --git a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.xml b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.xml index c999426..3e8fefe 100644 --- a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.xml +++ b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/LinePutScript.xml @@ -4,124 +4,432 @@ LinePutScript - + + + 将改内容转换成Line + + + + + 将改内容转换成Line + + + + + 将改内容转换成Line + + 转换方法 + 自定义转换方法(ConvertFunction) + 指定名称 + 如果为类,指定转换ILine的类型,默认为T + 强制转换内容为String (多用于当前类为Sub) + + + + 自定义转换方法 + + + + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + + + + 转换方法 + + + + + 指定名称 + + + + + 如果为类,指定转换ILine的类型,默认为T + + + + + 将该文本转换成Line + + + + + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + 转换结果 + + + + 序列化相关转换操作 + + + + + 转换方法: 继承该方法并实现Convert/ConvertBack + + + + + 转换方法: 继承该方法并实现Convert/ConvertBack + + + + + 指定转换方法 + + 要转换的值 + String:Info + + + + 指定反转方法 + + 储存的Info + 要转换的值 + + + + 通过Type获取转换方法 + + ConvertFunction + 要转换的值 + String:Info + + + + 通过Type获取转换方法 + + ConvertFunction + 储存的Info + 要转换的值 + + + + 指定转换类型(非必须) + + + + + 默认: 自动判断 + + + + + 字符串: ToString直接储存 + + + + + 浮点数(long): *1000000000 ConvertToInt64 + + + + + 时间 + + + + + 枚举: ToString/Enum.Prase + + + + + 列表: 根据 id:值 进行储存 + + + + + 列表: 根据 id:值 进行储存 + + + + + 字典: 根据 字典 结构进行储存 + + + + + 类: 将进行Converter递归 + + + + + 自定转换函数 + + + + + 将指定的对象序列化为TLine列表 + + Line + 要转换的对象 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + TLine列表 + + + + 将指定的对象序列化为TLPS + + LPS + Line + 要转换的对象 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + LPS + + + + 将指定的对象序列化为TLine + + Line + 要转换的对象 + 行名字 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + Line + + + + 将指定的对象序列化为LPS (使用默认参数) + + 要转换的对象 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + LPS + + + + 将指定的对象序列化为Line (使用默认参数) + + 要转换的对象 + 行名字 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + Line + + + + 获取指定对象类型的转换类型 + + 对象类型 + 附加参数,若有 + 转换类型 + + + + 获取指定对象类型的是否可以转换为String + + 转换方法 + + + + 将指定的对象序列化为String + + 需要序列化的object + 转换方法,默认自动判断 + 附加参数,若有 + 退回序列化的String + + + + 将指定的对象序列化为TLine + + + 需要序列化的object + 转换方法,默认自动判断 + 附加参数,若有 + 行名字 + + + + + 将String转换为指定Type的Object + + String值 + 要转换的Type + 转换方法,默认自动判断 + 附加参数,若有 + 指定Type的Object + + + + 将ISub转换为指定Type的Object + + ISub + 要转换的Type + 转换方法,默认自动判断 + 附加参数,若有 + 指定Type的Object + + + + 将指定的LPS反序列化为T对象 + + 想要获得的类型 + ILPS + 生成的对象 + + + + 将指定的ISub/ILine反序列化为T对象 + + 想要获得的类型 + ISub/ILine + 生成的对象 + + + + 将指定的ILine列表反序列化为T对象 + + 想要获得的类型 + ILine列表 + 生成的对象 + + 通过字典类型的行, Name不会重复 - Sub类型 - 值类型 - + 子项目 - + 文本 在末尾没有结束行号的文本 (去除关键字的文本) - + 文本 在末尾没有结束行号的文本 (正常) - + + + 获得Text的String结构 + + + 文本 (int) - + 文本 (int64) - + 文本 (double) - + 注释 ///为注释 - + 获取Sub数量 - + 是否只读 - + 通过引索修改Line中Sub内容(错误:字典没有引索) 要获得或设置的引索 引索指定的Sub - + 将指定的Sub添加到Subs列表的末尾 要添加的Sub - + 若无相同名称(Name)的Sub,则将指定的Sub添加到Subs列表的末尾 若有,则替换成要添加的Sub 要添加的Sub - + 将指定Sub的元素添加到Subs的末尾 要添加的多个Sub - + 将指定的Sub添加到Subs列表的末尾 要添加的Sub - + 移除Line中所有的Sub - + 返回一个值,该值指示指定的字段是否出现在Subs的Sub的名字 字段 如果在Line集合中找到符合的名字,则为True; 否则为false - + 确定某Sub是否在Line集合中 要在Line集合中定位的Sub 如果在Line集合中找到sub,则为True; 否则为false - + 将整个array复制到Line的Subs 复制到Subs的Sub列表 从零开始的引索,从引索处开始复制 - + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素 用于定义匹配的名称 如果找到相同名称的第一个sub,则为该sub; 否则为null - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 @@ -129,14 +437,14 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null - + 匹配拥有相同名称的Line或sub的所有元素(注意:在字典中,信息是唯一的) 用于定义匹配的名称 如果找到相同名称的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同名称和信息的Line或sub的所有元素(注意:在字典中,信息是唯一的) @@ -144,54 +452,54 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同信息的Line或sub的所有元素(注意:在字典中,信息是唯一的) 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的第一个Line,则为该Line; 否则为null - + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub 用于定义匹配的名称 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub - + 返回一个 Subs 的第一个元素。 要返回的第一个元素 - + 返回一个 Subs 的最后一个元素。 要返回的最后一个元素 - + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub 用于定义匹配的名称 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub - + 获得bool属性的sub 用于定义匹配的名称 如果找到相同名称的sub,则为True; 否则为false - + 设置bool属性的sub @@ -200,7 +508,7 @@ 值 - + 获得int属性的sub @@ -211,14 +519,14 @@ 如果没找到,则返回默认值 - + 设置int属性的sub 用于定义匹配的名称 储存进sub的int值 - + 获得long属性的sub @@ -229,14 +537,14 @@ 如果没找到,则返回默认值 - + 设置long属性的sub 用于定义匹配的名称 储存进sub的long值 - + 获得double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 @@ -247,14 +555,14 @@ 如果没找到,则返回默认值 - + 设置double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 用于定义匹配的名称 储存进sub的double(long)值 - + 获得DateTime属性的sub @@ -265,14 +573,14 @@ 如果没找到,则返回默认值 - + 设置DateTime属性的sub 用于定义匹配的名称 储存进sub的DateTime值 - + 获得String属性的sub @@ -283,14 +591,14 @@ 如果没找到,则返回默认值 - + 设置String属性的sub 用于定义匹配的名称 储存进sub的String值 - + 获得double属性的sub @@ -301,14 +609,14 @@ 如果没找到,则返回默认值 - + 设置double属性的sub 用于定义匹配的名称 储存进sub的double值 - + 通过名字和信息创建新的Line @@ -317,326 +625,326 @@ 文本 在末尾没有结束行号的文本 (正常) 子类集合 - + 将其他Line内容拷贝到本Line 其他line - + 退回Text的反转义文本 (正常显示) Text的反转义文本 (正常显示) - + 将指定的Sub添加到指定索引处(失效:字典没有顺序) 应插入 Sub 的从零开始的索引(失效) 要添加的Sub - + 将指定Sub的元素添加指定索引处(失效:字典没有顺序) 应插入 Sub 的从零开始的索引 要添加的多个Sub - + 从Subs中移除特定名称 要从Subs中删除的Sub的名称 如果成功移除了Sub,则为 true; 否则为 false - + 从Subs中移除特定名称的所有元素(失效:字典为单一性) 要从Subs中删除的Sub的名称 - + 搜索全部相似名称的Sub的所有元素 %字段% 如果找到相似名称的Sub,则为数组; 否则为一个空的Array - + 搜索字段是否出现在Line名称,并返回整个Subs中的第一个匹配元素 %字段% 如果找到相似名称的第一个Sub,则为该Sub; 否则为null - + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的sub从零开始的索引(错误:字典没有引索) 用于定义匹配的名称 如果找到相同名称的sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的Sub从零开始的索引(错误:字典没有引索) 用于定义匹配的Sub 如果找到相同名称的Sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - + 搜索相同名称的Sub,并返回整个Sub中全部匹配的sub从零开始的索引(错误:字典没有引索) 用于定义匹配的名称 如果找到相同名称的sub的元素,则为该元素的从零开始的索引组; 否则为空的Array - + 将当前Line转换成文本格式 (info已经被转义/去除关键字) Line的文本格式 (info已经被转义/去除关键字) - + 将当前Line转换成文本格式 (info已经被转义/去除关键字) Line的文本格式 (info已经被转义/去除关键字) - + 返回一个新List,包含所有Subs 所有储存的Subs - + 加载 通过lps文本创建一个子类 lps文本 - + 获得该Line的长哈希代码 64位哈希代码 - + 获得该Line的哈希代码 32位哈希代码 - + 将指定的Sub添加到指定索引处 (失效:字典没有顺序) 应插入 Sub 的从零开始的索引(失效) 要添加的Sub - + 从Subs中移除特定引索的Sub (错误:字典没有顺序) 要删除Sub的引索 - + 从Subs中移除特定对象的第一个匹配项 要从Subs中删除的Sub 如果成功移除了Sub,则为 true; 否则为 false - + 返回循环访问 Subs 的枚举数。 用于 Subs 的枚举数 - + 获取或设置 String 属性的sub (gstr)用于定义匹配的名称 获取或设置对 String 属性的Sub - + 获取或设置 Bool 属性的sub (gbol)用于定义匹配的名称 获取或设置对 bool 属性的Sub - + 获取或设置 Int 属性的sub (gint)用于定义匹配的名称 获取或设置对 int 属性的Sub - + 获取或设置 Long 属性的sub (gi64)用于定义匹配的名称 获取或设置对 long 属性的Sub - + 获取或设置 Double 属性的sub (gdbe)用于定义匹配的名称 获取或设置对 double 属性的Sub - + 获取或设置 Double(long) 属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 (gflt)用于定义匹配的名称 获取或设置对 double 属性的Sub - + 获取或设置 DateTime 属性的sub (gdbe)用于定义匹配的名称 获取或设置对 double 属性的Sub - + 通过字典类型的文件 包括文件读写等一系列操作 - + 集合 全部文件的数据 - + 创建一个 LpsDocument - + 从指定的字符串创建 LpsDocument 包含要加载的LPS文档的字符串 - + 将指定的Line添加到Assemblage列表 要添加的Line - + 若无相同名称(Name)的Line,则将指定的Line添加到Assemblage列表 若有,则替换成要添加的Line 要添加的Line - + 将指定Line的元素添加到Assemblage 要添加的多个Line - + 将指定Line的元素添加到Assemblage 要添加的多个Line - + 将指定的Line添加到指定索引处(失效:字典没有顺序) 应插入 Line 的从零开始的索引 要添加的Line - + 将指定Line的元素添加指定索引处(失效:字典没有顺序) 应插入 Line 的从零开始的索引 要添加的多个Line - + 将指定Line的元素添加指定索引处(失效:字典没有顺序) 应插入 Line 的从零开始的索引 要添加的多个Line - + 从Assemblage中移除特定对象的第一个匹配项 要从Assemblage中删除的Line的名称 如果成功移除了line,则为 true; 否则为 false - + 从Assemblage中移除特定名称的第一个匹配项 要从Assemblage中删除的Line的名称 如果成功移除了line,则为 true; 否则为 false - + 从Assemblage中移除移除与条件相匹配的所有Line (失效:字典没有顺序) 要从Assemblage中删除的Line - + 从Assemblage中移除移除与名称相匹配的所有Line (失效:字典没有顺序) 要从Assemblage中删除的Line的名称 - + 移除Assemblage的指定索引处的Line (错误:字典没有引索) 要移除的Line的从零开始的索引 - + 确定某Line是否在Assemblage中 要在Assemblage中定位的Line 如果在Assemblage中找到line,则为True; 否则为false - + 确定某Sub是否在Assemblage中 要在Assemblage中定位的Sub 如果在Assemblage中找到line,则为True; 否则为false - + 确定某Line(名字定位)是否在Assemblage中 Line的名字 如果在Assemblage中找到相同的名字,则为True; 否则为false - + 确定某sub(名字定位)是否在Assemblage中 sub的名字 如果在Assemblage的sub中找到相同的名字,则为True; 否则为false - + 匹配拥有相同名称的Line的所有元素(注意:在字典中,信息是唯一的) 用于定义匹配的名称 如果找到相同名称的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同名称和信息的Line的所有元素(注意:在字典中,信息是唯一的) @@ -644,21 +952,21 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同信息的Line的所有元素(注意:在字典中,信息是唯一的) 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的名称 如果找到相同名称的第一个Line,则为该Line; 否则为null - + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 @@ -666,28 +974,35 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null - + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的第一个Line,则为该Line; 否则为null - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line 用于定义匹配的名称 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line - + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + 匹配拥有相同名称的Sub的所有元素 用于定义匹配的名称 如果找到相同名称的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同名称和信息的Sub的所有元素 @@ -695,21 +1010,21 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同信息的Sub的所有元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的名称 如果找到相同名称的第一个Sub,则为该Line; 否则为null - + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 @@ -717,141 +1032,147 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的第一个Sub,则为该Line; 否则为null - + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的第一个Sub,则为该Line; 否则为null - + 搜索全部相似名称的Line的所有元素 %字段% 如果找到相似名称的Line,则为数组; 否则为一个空的Array - + 搜索字段是否出现在Line名称,并返回整个Assemblage中的第一个匹配元素 %字段% 如果找到相似名称的第一个Line,则为该Line; 否则为null - + 搜索全部相似名称的Sub的所有元素 %字段% 如果找到相似名称的Line,则为该数组; 否则为一个空的Array - + 搜索字段是否出现在Sub名称,并返回整个Assemblage中的第一个匹配元素 %字段% 如果找到相同名称的第一个Sub,则为该Sub; 否则为null - + 搜索相同名称的Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 (错误:字典没有引索) 用于定义匹配的名称 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - + 搜索相同名称的Line,并返回整个Assemblage中全部匹配的Line从零开始的索引 (错误:字典没有引索) 用于定义匹配的名称 如果找到相同名称的Line的元素,则为该元素的从零开始的索引组; 否则为空的Array - + 获得Assemblage目前储存的Line数量 - + 从指定的字符串加载LPS文档 包含要加载的LPS文档的字符串 - + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + 返回一个Assemblage的第一个元素。 要返回的第一个元素 - + 返回一个Assemblage的最后一个元素。 要返回的最后一个元素 - + 返回循环访问 Assemblage 的枚举数。 用于 Assemblage 的枚举数 - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line 用于定义匹配的名称 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line - + 将当前Documents转换成文本格式 LinePutScript的文本格式 - + 获得该LPS文档的长哈希代码 64位哈希代码 - + 获得该LPS文档的哈希代码 32位哈希代码 - + 确认对象是否等于当前对象 Subs - + 获得当前文档大小 单位:字符 - + 是否只读 - + 通过引索修改lps中Line内容 (错误:字典没有引索) 要获得或设置的引索 引索指定的Line - + 获得bool属性的line 用于定义匹配的名称 如果找到相同名称的line,则为True; 否则为false - + 设置bool属性的line @@ -861,7 +1182,7 @@ 如果为false,则删除所有name为lineName的line - + 获得int属性的line @@ -872,14 +1193,14 @@ 如果没找到,则返回默认值 - + 设置int属性的line 用于定义匹配的名称 储存进line的int值 - + 获得long属性的line @@ -890,14 +1211,14 @@ 如果没找到,则返回默认值 - + 设置long属性的line 用于定义匹配的名称 储存进line的long值 - + 获得String属性的line @@ -908,14 +1229,14 @@ 如果没找到,则返回默认值 - + 设置String属性的line 用于定义匹配的名称 储存进line的String值 - + 获得double属性的line @@ -926,14 +1247,14 @@ 如果没找到,则返回默认值 - + 设置double属性的line 用于定义匹配的名称 储存进line的double值 - + 获得double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 @@ -944,14 +1265,14 @@ 如果没找到,则返回默认值 - + 设置double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 用于定义匹配的名称 储存进line的double(long)值 - + 获得DateTime属性的line @@ -962,95 +1283,95 @@ 如果没找到,则返回默认值 - + 设置DateTime属性的line 用于定义匹配的名称 储存进line的DateTime值 - + 获取或设置 String 属性的line (gstr)用于定义匹配的名称 获取或设置对 String 属性的Line - + 获取或设置 Bool 属性的line (gbol)用于定义匹配的名称 获取或设置对 bool 属性的Line - + 获取或设置 Int 属性的line (gint)用于定义匹配的名称 获取或设置对 int 属性的Line - + 获取或设置 Long 属性的line (gi64)用于定义匹配的名称 获取或设置对 long 属性的Line - + 获取或设置 Double 属性的line (gdbe)用于定义匹配的名称 获取或设置对 double 属性的Line - + 获取或设置 Double(long) 属性的line 通过转换long获得更精确的小数,小数位最大保留9位 (gflt)用于定义匹配的名称 获取或设置对 double 属性的line - + 获取或设置 DateTime 属性的line (gdbe)用于定义匹配的名称 获取或设置对 double 属性的line - + 搜索相同Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 (错误:字典没有引索) 用于定义匹配的Line 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - + 将指定的Line添加到指定索引处 (失效:字典没有顺序) 应插入 Line 的从零开始的索引 要添加的Line - + 将指定的Line添加到Assemblage列表 要添加的Line - + 移除Assemblage中所有的Line - + 将整个array复制到Assemblage 复制到Assemblage的Line列表 从零开始的引索,从引索处开始复制 - + 返回一个新List,包含所有Line @@ -1418,12 +1739,12 @@ (gdbe)用于定义匹配的名称 获取或设置对 double 属性的Sub - + 行接口 包含多个子类的接口 继承自子类接口 - + 通过名字和信息创建新的Line @@ -1432,109 +1753,109 @@ 文本 在末尾没有结束行号的文本 (正常) 子类集合 - + 将其他Line内容拷贝到本Line 其他line - + 文本 在末尾没有结束行号的文本 (去除关键字的文本) - + 文本 在末尾没有结束行号的文本 (正常) - + 注释 ///为注释 - + 文本 (int) - + 文本 (int64) - + 文本 (double) - + 退回Text的反转义文本 (正常显示) Text的反转义文本 (正常显示) - + 将指定的Sub添加到Subs列表的末尾 要添加的Sub - + 若无相同名称(Name)的Sub,则将指定的Sub添加到Subs列表的末尾 若有,则替换成要添加的Sub 要添加的Sub - + 将指定Sub的元素添加到Subs的末尾 要添加的多个Sub - + 将指定的Sub添加到指定索引处 应插入 Sub 的从零开始的索引 要添加的Sub - + 将指定Sub的元素添加指定索引处 应插入 Sub 的从零开始的索引 要添加的多个Sub - + 从Subs中移除特定名称的第一个匹配项 要从Subs中删除的Sub的名称 如果成功移除了Sub,则为 true; 否则为 false - + 从Subs中移除特定名称的所有元素 要从Subs中删除的Sub的名称 - + 返回一个值,确定某Sub是否在Line集合中 要在Line集合中定位的Sub的名字 如果在Line集合中找到符合的名字,则为True; 否则为false - + 匹配拥有相同名称的Line或sub的所有元素 用于定义匹配的名称 如果找到相同名称的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同名称和信息的Line或sub的所有元素 @@ -1542,21 +1863,21 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同信息的Line或sub的所有元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素 用于定义匹配的名称 如果找到相同名称的第一个sub,则为该sub; 否则为null - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 @@ -1564,187 +1885,189 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null - + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的第一个Line,则为该Line; 否则为null - + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub 用于定义匹配的名称 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub - + 搜索全部相似名称的Sub的所有元素 %字段% 如果找到相似名称的Sub,则为数组; 否则为一个空的Array - + 搜索字段是否出现在Line名称,并返回整个Subs中的第一个匹配元素 %字段% 如果找到相似名称的第一个Sub,则为该Sub; 否则为null - + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的sub从零开始的索引 用于定义匹配的名称 如果找到相同名称的sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - + 搜索相同名称的Sub,并返回整个Sub中全部匹配的sub从零开始的索引 用于定义匹配的名称 如果找到相同名称的sub的元素,则为该元素的从零开始的索引组; 否则为空的Array - + 将当前Line转换成文本格式 (info已经被转义/去除关键字) Line的文本格式 (info已经被转义/去除关键字) - + 将当前Line转换成文本格式 (info已经被转义/去除关键字) 将输出储存到StringBuilder 储存到的 StringBuilder Line的文本格式 (info已经被转义/去除关键字) - + 返回一个 Subs 的第一个元素。 要返回的第一个元素 - + 返回一个 Subs 的最后一个元素。 要返回的最后一个元素 - + 返回一个新List,包含所有Subs 所有储存的Subs - + + + 获得Text的String结构 + + + LPS接口 - Line类型 - Sub类型 - 值类型 - + 返回一个新List,包含所有Line 所有储存的Line - + 将指定的Line添加到Assemblage列表的末尾 要添加的Line - + 若无相同名称(Name)的Line,则将指定的Line添加到Assemblage列表的末尾 若有,则替换成要添加的Line 要添加的Line - + 将指定Line的元素添加到Assemblage的末尾 要添加的多个Line - + 将指定Line的元素添加到Assemblage的末尾 要添加的多个Line - + 将指定的Line添加到指定索引处 应插入 Line 的从零开始的索引 要添加的Line - + 将指定Line的元素添加指定索引处 应插入 Line 的从零开始的索引 要添加的多个Line - + 将指定Line的元素添加指定索引处 应插入 Line 的从零开始的索引 要添加的多个Line - + 从Assemblage中移除特定名称的第一个匹配项 要从Assemblage中删除的Line的名称 如果成功移除了line,则为 true; 否则为 false - + 从Assemblage中移除移除与条件相匹配的所有Line 要从Assemblage中删除的Line - + 从Assemblage中移除移除与名称相匹配的所有Line 要从Assemblage中删除的Line的名称 - + 确定某Sub是否在Assemblage中 要在Assemblage中定位的Sub 如果在Assemblage中找到line,则为True; 否则为false - + 确定某Line(名字定位)是否在Assemblage中 Line的名字 如果在Assemblage中找到相同的名字,则为True; 否则为false - + 确定某sub(名字定位)是否在Assemblage中 sub的名字 如果在Assemblage的sub中找到相同的名字,则为True; 否则为false - + 匹配拥有相同名称的Line的所有元素 用于定义匹配的名称 如果找到相同名称的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同名称和信息的Line的所有元素 @@ -1752,21 +2075,21 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同信息的Line的所有元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的名称 如果找到相同名称的第一个Line,则为该Line; 否则为null - + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 @@ -1774,28 +2097,28 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null - + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的第一个Line,则为该Line; 否则为null - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line 用于定义匹配的名称 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line - + 匹配拥有相同名称的Sub的所有元素 用于定义匹配的名称 如果找到相同名称的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同名称和信息的Sub的所有元素 @@ -1803,21 +2126,21 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 匹配拥有相同信息的Sub的所有元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的名称 如果找到相同名称的第一个Sub,则为该Line; 否则为null - + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 @@ -1825,80 +2148,80 @@ 用于定义匹配的信息 (去除关键字的文本) 如果找到相同名称和信息的第一个Sub,则为该Line; 否则为null - + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 用于定义匹配的信息 (去除关键字的文本) 如果找到相同信息的第一个Sub,则为该Line; 否则为null - + 搜索全部相似名称的Line的所有元素 %字段% 如果找到相似名称的Line,则为数组; 否则为一个空的Array - + 搜索字段是否出现在Line名称,并返回整个Assemblage中的第一个匹配元素 %字段% 如果找到相似名称的第一个Line,则为该Line; 否则为null - + 搜索全部相似名称的Sub的所有元素 %字段% 如果找到相似名称的Line,则为该数组; 否则为一个空的Array - + 搜索字段是否出现在Sub名称,并返回整个Assemblage中的第一个匹配元素 %字段% 如果找到相同名称的第一个Sub,则为该Sub; 否则为null - + 搜索相同名称的Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 用于定义匹配的名称 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - + 搜索相同名称的Line,并返回整个Assemblage中全部匹配的Line从零开始的索引 用于定义匹配的名称 如果找到相同名称的Line的元素,则为该元素的从零开始的索引组; 否则为空的Array - + 从指定的字符串加载LPS文档 包含要加载的LPS文档的字符串 - + 返回一个Assemblage的第一个元素。 要返回的第一个元素 - + 返回一个Assemblage的最后一个元素。 要返回的最后一个元素 - + 获得该LPS文档的长哈希代码 64位哈希代码 - + 获得该LPS文档的哈希代码 @@ -1989,102 +2312,122 @@ 设置 bool 值 - + 子类接口 LinePutScript最基础的类的最基础的接口 - + 加载 通过lps文本创建一个子类 lps文本 - + 加载 通过名字和信息创建新的Sub 名称 信息 (正常版本) - + 将其他Sub内容拷贝到本Sub 其他Sub - + 名称 没有唯一性 - + - 信息 (去除关键字的文本) + 信息 (去除关键字的文本) (string) - + + + 信息 (去除关键字的文本) (可复制) + + + + + 信息 (去除关键字的文本) (可比较) + + + 信息 (正常) - + 信息 (int) - + 信息 (int64) - + 信息 (double) - + + + 信息 (bool) + + + 返回一个 Info集合 的第一个string。 要返回的第一个string - + 返回一个 Info集合 的最后一个string。 要返回的最后一个string - + 退回Info的反转义文本 (正常显示) info的反转义文本 (正常显示) - + 退回Info集合的转义文本集合 (正常显示) info的转义文本集合 (正常显示) - + 将当前Sub转换成文本格式 (info已经被转义/去除关键字) Sub的文本格式 (info已经被转义/去除关键字) - + 获得该Sub的哈希代码 32位哈希代码 - + 获得该Sub的长哈希代码 64位哈希代码 + + + 获得Info的String结构 + + 行 包含多个子类 继承自子类 @@ -2101,7 +2444,13 @@ lpsSub文本 - + + + 加载 通过lps文本创建一个子类 + + lps文本 + + 通过名字和信息创建新的Line @@ -2110,12 +2459,511 @@ 文本 在末尾没有结束行号的文本 (正常) 子类集合 - + + + 通过名字和信息创建新的Line + + 名称 + 信息 (正常) + 文本 在末尾没有结束行号的文本 (正常) + 子类集合 + + 通过其他Line创建新的Line 其他line + + + 将其他Line内容拷贝到本Line + + 其他line + + + + 文本 在末尾没有结束行号的文本 (去除关键字的文本) + + + + + 文本 在末尾没有结束行号的文本 (正常) + + + + + 获得Text的String结构 + + + + + 注释 ///为注释 + + + + + 文本 (int) + + + + + 文本 (int64) + + + + + 文本 (double) + + + + + 退回Text的反转义文本 (正常显示) + + Text的反转义文本 (正常显示) + + + + 子项目 + + + + + 将指定的Sub添加到Subs列表的末尾 + + 要添加的Sub + + + + 若无相同名称(Name)的Sub,则将指定的Sub添加到Subs列表的末尾 + 若有,则替换成要添加的Sub + + 要添加的Sub + + + + 将指定Sub的元素添加到Subs的末尾 + + 要添加的多个Sub + + + + 将指定的Sub添加到指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的Sub + + + + 将指定Sub的元素添加指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的多个Sub + + + + 从Subs中移除特定对象的第一个匹配项 + + 要从Subs中删除的Sub + 如果成功移除了Sub,则为 true; 否则为 false + + + + 从Subs中移除特定名称的第一个匹配项 + + 要从Subs中删除的Sub的名称 + 如果成功移除了Sub,则为 true; 否则为 false + + + + 从Subs中移除特定名称的所有元素 + + 要从Subs中删除的Sub的名称 + + + + 确定某Sub是否在Line集合中 + + 要在Line集合中定位的Sub + 如果在Line集合中找到sub,则为True; 否则为false + + + + 返回一个值,确定某Sub是否在Line集合中 + + 要在Line集合中定位的Sub的名字 + 如果在Line集合中找到符合的名字,则为True; 否则为false + + + + 匹配拥有相同名称的Line或sub的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line或sub的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line或sub的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Sub,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Subs中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的sub从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Sub,并返回整个Sub中全部匹配的sub从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的sub的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) + + Line的文本格式 (info已经被转义/去除关键字) + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) 将输出储存到StringBuilder + + 储存到的 StringBuilder + Line的文本格式 (info已经被转义/去除关键字) + + + + 获得该Line的长哈希代码 + + 64位哈希代码 + + + + 获得该Line的哈希代码 + + 32位哈希代码 + + + + 确认对象是否等于当前对象 + + Subs + + + + + 返回循环访问 Subs 的枚举数。 + + 用于 Subs 的枚举数 + + + + 返回一个 Subs 的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个 Subs 的最后一个元素。 + + 要返回的最后一个元素 + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 获得bool属性的sub + + 用于定义匹配的名称 + 如果找到相同名称的sub,则为True; 否则为false + + + + 设置bool属性的sub + + 用于定义匹配的名称 + + 值 + + + + + 获得int属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的sub + + 用于定义匹配的名称 + 储存进sub的int值 + + + + 获得long属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的sub + + 用于定义匹配的名称 + 储存进sub的long值 + + + + 获得double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 储存进sub的double(long)值 + + + + 获得DateTime属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的sub + + 用于定义匹配的名称 + 储存进sub的DateTime值 + + + + 获得String属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的String值 + 如果没找到,则返回默认值 + + + + + 设置String属性的sub + + 用于定义匹配的名称 + 储存进sub的String值 + + + + 获得double属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的sub + + 用于定义匹配的名称 + 储存进sub的double值 + + + + 获取或设置 String 属性的sub + + (gstr)用于定义匹配的名称 + 获取或设置对 String 属性的Sub + + + + 获取或设置 Bool 属性的sub + + (gbol)用于定义匹配的名称 + 获取或设置对 bool 属性的Sub + + + + 获取或设置 Int 属性的sub + + (gint)用于定义匹配的名称 + 获取或设置对 int 属性的Sub + + + + 获取或设置 Long 属性的sub + + (gi64)用于定义匹配的名称 + 获取或设置对 long 属性的Sub + + + + 获取或设置 Double 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 Double(long) 属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 DateTime 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取Sub数量 + + + + + 是否只读 + + + + + 通过引索修改Line中Sub内容 + + 要获得或设置的引索 + 引索指定的Sub + + + + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的Sub从零开始的索引 + + 用于定义匹配的Sub + 如果找到相同名称的Sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 将指定的Sub添加到指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的Sub + + + + 从Subs中移除特定引索的Sub + + 要删除Sub的引索 + + + + 将指定的Sub添加到Subs列表的末尾 + + 要添加的Sub + + + + 移除Line中所有的Sub + + + + + 将整个array复制到Line的Subs + + 复制到Subs的Sub列表 + 从零开始的引索,从引索处开始复制 + + + + 将当前line与另一个line进行比较,并退回一个整数指示在排序位置中是位于另一个对象之前之后还是相同位置 + + 另一个line + 值小于零时排在 other 之前 值等于零时出现在相同排序位置 值大于零则排在 other 之后 + 克隆一个Line @@ -2133,6 +2981,11 @@ 文件 包括文件读写等一系列操作 + + + 集合 全部文件的数据 + + 创建一个 LpsDocument @@ -2144,6 +2997,552 @@ 包含要加载的LPS文档的字符串 + + + 将指定的Line添加到Assemblage列表的末尾 + + 要添加的Line + + + + 若无相同名称(Name)的Line,则将指定的Line添加到Assemblage列表的末尾 + 若有,则替换成要添加的Line + + 要添加的Line + + + + 将指定Line的元素添加到Assemblage的末尾 + + 要添加的多个Line + + + + 将指定Line的元素添加到Assemblage的末尾 + + 要添加的多个Line + + + + 将指定的Line添加到指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的Line + + + + 将指定Line的元素添加指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 将指定Line的元素添加指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 从Assemblage中移除特定对象的第一个匹配项 + + 要从Assemblage中删除的Line的名称 + 如果成功移除了line,则为 true; 否则为 false + + + + 从Assemblage中移除特定名称的第一个匹配项 + + 要从Assemblage中删除的Line的名称 + 如果成功移除了line,则为 true; 否则为 false + + + + 从Assemblage中移除移除与条件相匹配的所有Line + + 要从Assemblage中删除的Line + + + + 从Assemblage中移除移除与名称相匹配的所有Line + + 要从Assemblage中删除的Line的名称 + + + + 移除Assemblage的指定索引处的Line + + 要移除的Line的从零开始的索引 + + + + 确定某Line是否在Assemblage中 + + 要在Assemblage中定位的Line + 如果在Assemblage中找到line,则为True; 否则为false + + + + 确定某Sub是否在Assemblage中 + + 要在Assemblage中定位的Sub + 如果在Assemblage中找到line,则为True; 否则为false + + + + 确定某Line(名字定位)是否在Assemblage中 + + Line的名字 + 如果在Assemblage中找到相同的名字,则为True; 否则为false + + + + 确定某sub(名字定位)是否在Assemblage中 + + sub的名字 + 如果在Assemblage的sub中找到相同的名字,则为True; 否则为false + + + + 匹配拥有相同名称的Line的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 匹配拥有相同名称的Sub的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Sub的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Sub的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Sub,则为该Line; 否则为null + + + + 搜索全部相似名称的Line的所有元素 + + %字段% + 如果找到相似名称的Line,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Line,则为该Line; 否则为null + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Line,则为该数组; 否则为一个空的Array + + + + 搜索字段是否出现在Sub名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相同名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Line,并返回整个Assemblage中全部匹配的Line从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的Line的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 获得Assemblage目前储存的Line数量 + + + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + + + 返回一个Assemblage的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个Assemblage的最后一个元素。 + + 要返回的最后一个元素 + + + + 返回循环访问 Assemblage 的枚举数。 + + 用于 Assemblage 的枚举数 + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 将当前Documents转换成文本格式 + + LinePutScript的文本格式 + + + + 获得该LPS文档的长哈希代码 + + 64位哈希代码 + + + + 获得该LPS文档的哈希代码 + + 32位哈希代码 + + + + 确认对象是否等于当前对象 + + Subs + + + + + 获得当前文档大小 单位:字符 + + + + + 是否只读 + + + + + 通过引索修改lps中Line内容 + + 要获得或设置的引索 + 引索指定的Line + + + + 获得bool属性的line + + 用于定义匹配的名称 + 如果找到相同名称的line,则为True; 否则为false + + + + 设置bool属性的line + + 用于定义匹配的名称 + + 如果为ture,则在没有相同name为lineName的line时候添加新的line + 如果为false,则删除所有name为lineName的line + + + + + 获得int属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的line + + 用于定义匹配的名称 + 储存进line的int值 + + + + 获得long属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的line + + 用于定义匹配的名称 + 储存进line的long值 + + + + 获得String属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的string值 + 如果没找到,则返回默认值 + + + + + 设置String属性的line + + 用于定义匹配的名称 + 储存进line的String值 + + + + 获得double属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的line + + 用于定义匹配的名称 + 储存进line的double值 + + + + 获得double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 储存进line的double(long)值 + + + + 获得DateTime属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的line + + 用于定义匹配的名称 + 储存进line的DateTime值 + + + + 获取或设置 String 属性的line + + (gstr)用于定义匹配的名称 + 获取或设置对 String 属性的Line + + + + 获取或设置 Bool 属性的line + + (gbol)用于定义匹配的名称 + 获取或设置对 bool 属性的Line + + + + 获取或设置 Int 属性的line + + (gint)用于定义匹配的名称 + 获取或设置对 int 属性的Line + + + + 获取或设置 Long 属性的line + + (gi64)用于定义匹配的名称 + 获取或设置对 long 属性的Line + + + + 获取或设置 Double 属性的line + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Line + + + + 获取或设置 Double(long) 属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)用于定义匹配的名称 + 获取或设置对 double 属性的line + + + + 获取或设置 DateTime 属性的line + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的line + + + + 搜索相同Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 + + 用于定义匹配的Line + 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 将指定的Line添加到指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的Line + + + + 将指定的Line添加到Assemblage列表的末尾 + + 要添加的Line + + + + 移除Assemblage中所有的Line + + + + + 将整个array复制到Assemblage + + 复制到Assemblage的Line列表 + 从零开始的引索,从引索处开始复制 + + + + 返回一个新List,包含所有Line + + 所有储存的Line + 当前Line读取进度 @@ -2839,1271 +4238,6 @@ 项目名称 如果找到项目则返回值(原始值) - - - 子类 LinePutScript最基础的类 - - - - - 创建一个子类 - - - - - 通过lpsSub文本创建一个子类 - - lpsSub文本 - - - - 加载 通过lps文本创建一个子类 - - lps文本 - - - - 通过名字和信息创建新的Sub - - 名称 - 信息 (正常版本) - - - - 通过名字和信息创建新的Sub - - 名称 - 信息 (正常版本) - - - - 通过名字和信息创建新的Sub - - 名称 - 多个信息 (正常版本) - - - - 通过Sub创建新的Sub - - 其他Sub - - - - 将其他Sub内容拷贝到本Sub - - 其他Sub - - - - 名称 没有唯一性 - - - - - ID 根据Name生成 没有唯一性 - - - - - 信息 (去除关键字的文本) - - - - - 信息 (正常) - - - - - 获得Info的String结构 - - - - - 信息 (int) - - - - - 信息 (int64) - - - - - 信息 (double) - - - - - 返回循环访问 Info集合 的枚举数。 - - 用于 Info集合 的枚举数 - - - - 返回一个 Info集合 的第一个string。 - - 要返回的第一个string - - - - 返回一个 Info集合 的最后一个string。 - - 要返回的最后一个string - - - - 退回Info的反转义文本 (正常显示) - - info的反转义文本 (正常显示) - - - - 退回Info集合的转义文本集合 (正常显示) - - info的转义文本集合 (正常显示) - - - - 将当前Sub转换成文本格式 (info已经被转义/去除关键字) - - Sub的文本格式 (info已经被转义/去除关键字) - - - - 获得该Sub的哈希代码 - - 32位哈希代码 - - - - 获得该Sub的长哈希代码 - - 64位哈希代码 - - - - 确认对象是否等于当前对象 - - Subs - - - - - 将当前sub与另一个sub进行比较,并退回一个整数指示在排序位置中是位于另一个对象之前之后还是相同位置 - - 另一个sub - 值小于零时排在 other 之前 值等于零时出现在相同排序位置 值大于零则排在 other 之后 - - - - 克隆一个Sub - - 相同的sub - - - - 行 包含多个子类 继承自子类 - - - - - 创建一行 - - - - - 通过lpsLine文本创建一行 - - lpsSub文本 - - - - 加载 通过lps文本创建一个子类 - - lps文本 - - - - 通过名字和信息创建新的Line - - 名称 - 信息 (正常) - 文本 在末尾没有结束行号的文本 (正常) - 子类集合 - - - - 通过名字和信息创建新的Line - - 名称 - 信息 (正常) - 文本 在末尾没有结束行号的文本 (正常) - 子类集合 - - - - 通过其他Line创建新的Line - - 其他line - - - - 将其他Line内容拷贝到本Line - - 其他line - - - - 文本 在末尾没有结束行号的文本 (去除关键字的文本) - - - - - 文本 在末尾没有结束行号的文本 (正常) - - - - - 获得Text的String结构 - - - - - 注释 ///为注释 - - - - - 文本 (int) - - - - - 文本 (int64) - - - - - 文本 (double) - - - - - 退回Text的反转义文本 (正常显示) - - Text的反转义文本 (正常显示) - - - - 子项目 - - - - - 将指定的Sub添加到Subs列表的末尾 - - 要添加的Sub - - - - 若无相同名称(Name)的Sub,则将指定的Sub添加到Subs列表的末尾 - 若有,则替换成要添加的Sub - - 要添加的Sub - - - - 将指定Sub的元素添加到Subs的末尾 - - 要添加的多个Sub - - - - 将指定的Sub添加到指定索引处 - - 应插入 Sub 的从零开始的索引 - 要添加的Sub - - - - 将指定Sub的元素添加指定索引处 - - 应插入 Sub 的从零开始的索引 - 要添加的多个Sub - - - - 从Subs中移除特定对象的第一个匹配项 - - 要从Subs中删除的Sub - 如果成功移除了Sub,则为 true; 否则为 false - - - - 从Subs中移除特定名称的第一个匹配项 - - 要从Subs中删除的Sub的名称 - 如果成功移除了Sub,则为 true; 否则为 false - - - - 从Subs中移除特定名称的所有元素 - - 要从Subs中删除的Sub的名称 - - - - 确定某Sub是否在Line集合中 - - 要在Line集合中定位的Sub - 如果在Line集合中找到sub,则为True; 否则为false - - - - 返回一个值,确定某Sub是否在Line集合中 - - 要在Line集合中定位的Sub的名字 - 如果在Line集合中找到符合的名字,则为True; 否则为false - - - - 匹配拥有相同名称的Line或sub的所有元素 - - 用于定义匹配的名称 - 如果找到相同名称的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 匹配拥有相同名称和信息的Line或sub的所有元素 - - 用于定义匹配的名称 - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同名称和信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 匹配拥有相同信息的Line或sub的所有元素 - - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素 - - 用于定义匹配的名称 - 如果找到相同名称的第一个sub,则为该sub; 否则为null - - - - 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的名称 - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null - - - - 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同信息的第一个Line,则为该Line; 否则为null - - - - 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub - - 用于定义匹配的名称 - 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub - - - - 搜索全部相似名称的Sub的所有元素 - - %字段% - 如果找到相似名称的Sub,则为数组; 否则为一个空的Array - - - - 搜索字段是否出现在Line名称,并返回整个Subs中的第一个匹配元素 - - %字段% - 如果找到相似名称的第一个Sub,则为该Sub; 否则为null - - - - 搜索相同名称的Sub,并返回整个Subs中第一个匹配的sub从零开始的索引 - - 用于定义匹配的名称 - 如果找到相同名称的sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - - - - 搜索相同名称的Sub,并返回整个Sub中全部匹配的sub从零开始的索引 - - 用于定义匹配的名称 - 如果找到相同名称的sub的元素,则为该元素的从零开始的索引组; 否则为空的Array - - - - 将当前Line转换成文本格式 (info已经被转义/去除关键字) - - Line的文本格式 (info已经被转义/去除关键字) - - - - 将当前Line转换成文本格式 (info已经被转义/去除关键字) 将输出储存到StringBuilder - - 储存到的 StringBuilder - Line的文本格式 (info已经被转义/去除关键字) - - - - 获得该Line的长哈希代码 - - 64位哈希代码 - - - - 获得该Line的哈希代码 - - 32位哈希代码 - - - - 确认对象是否等于当前对象 - - Subs - - - - - 返回循环访问 Subs 的枚举数。 - - 用于 Subs 的枚举数 - - - - 返回一个 Subs 的第一个元素。 - - 要返回的第一个元素 - - - - 返回一个 Subs 的最后一个元素。 - - 要返回的最后一个元素 - - - - 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub - - 用于定义匹配的名称 - 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub - - - - 获得bool属性的sub - - 用于定义匹配的名称 - 如果找到相同名称的sub,则为True; 否则为false - - - - 设置bool属性的sub - - 用于定义匹配的名称 - - 值 - - - - - 获得int属性的sub - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的sub,返回sub中储存的int值 - 如果没找到,则返回默认值 - - - - - 设置int属性的sub - - 用于定义匹配的名称 - 储存进sub的int值 - - - - 获得long属性的sub - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的sub,返回sub中储存的long值 - 如果没找到,则返回默认值 - - - - - 设置long属性的sub - - 用于定义匹配的名称 - 储存进sub的long值 - - - - 获得double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的sub,返回sub中储存的double(long)值 - 如果没找到,则返回默认值 - - - - - 设置double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 - - 用于定义匹配的名称 - 储存进sub的double(long)值 - - - - 获得DateTime属性的sub - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的sub,返回sub中储存的DateTime值 - 如果没找到,则返回默认值 - - - - - 设置DateTime属性的sub - - 用于定义匹配的名称 - 储存进sub的DateTime值 - - - - 获得String属性的sub - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的sub,返回sub中储存的String值 - 如果没找到,则返回默认值 - - - - - 设置String属性的sub - - 用于定义匹配的名称 - 储存进sub的String值 - - - - 获得double属性的sub - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的sub,返回sub中储存的double值 - 如果没找到,则返回默认值 - - - - - 设置double属性的sub - - 用于定义匹配的名称 - 储存进sub的double值 - - - - 获取或设置 String 属性的sub - - (gstr)用于定义匹配的名称 - 获取或设置对 String 属性的Sub - - - - 获取或设置 Bool 属性的sub - - (gbol)用于定义匹配的名称 - 获取或设置对 bool 属性的Sub - - - - 获取或设置 Int 属性的sub - - (gint)用于定义匹配的名称 - 获取或设置对 int 属性的Sub - - - - 获取或设置 Long 属性的sub - - (gi64)用于定义匹配的名称 - 获取或设置对 long 属性的Sub - - - - 获取或设置 Double 属性的sub - - (gdbe)用于定义匹配的名称 - 获取或设置对 double 属性的Sub - - - - 获取或设置 Double(long) 属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 - - (gflt)用于定义匹配的名称 - 获取或设置对 double 属性的Sub - - - - 获取或设置 DateTime 属性的sub - - (gdbe)用于定义匹配的名称 - 获取或设置对 double 属性的Sub - - - - 获取Sub数量 - - - - - 是否只读 - - - - - 通过引索修改Line中Sub内容 - - 要获得或设置的引索 - 引索指定的Sub - - - - 搜索相同名称的Sub,并返回整个Subs中第一个匹配的Sub从零开始的索引 - - 用于定义匹配的Sub - 如果找到相同名称的Sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - - - - 将指定的Sub添加到指定索引处 - - 应插入 Sub 的从零开始的索引 - 要添加的Sub - - - - 从Subs中移除特定引索的Sub - - 要删除Sub的引索 - - - - 将指定的Sub添加到Subs列表的末尾 - - 要添加的Sub - - - - 移除Line中所有的Sub - - - - - 将整个array复制到Line的Subs - - 复制到Subs的Sub列表 - 从零开始的引索,从引索处开始复制 - - - - 将当前line与另一个line进行比较,并退回一个整数指示在排序位置中是位于另一个对象之前之后还是相同位置 - - 另一个line - 值小于零时排在 other 之前 值等于零时出现在相同排序位置 值大于零则排在 other 之后 - - - - 克隆一个Line - - 相同的Line - - - - 返回一个新List,包含所有Subs - - 所有储存的Subs - - - - 文件 包括文件读写等一系列操作 - - - - - 集合 全部文件的数据 - - - - - 创建一个 LpsDocument - - - - - 从指定的字符串创建 LpsDocument - - 包含要加载的LPS文档的字符串 - - - - 将指定的Line添加到Assemblage列表的末尾 - - 要添加的Line - - - - 若无相同名称(Name)的Line,则将指定的Line添加到Assemblage列表的末尾 - 若有,则替换成要添加的Line - - 要添加的Line - - - - 将指定Line的元素添加到Assemblage的末尾 - - 要添加的多个Line - - - - 将指定Line的元素添加到Assemblage的末尾 - - 要添加的多个Line - - - - 将指定的Line添加到指定索引处 - - 应插入 Line 的从零开始的索引 - 要添加的Line - - - - 将指定Line的元素添加指定索引处 - - 应插入 Line 的从零开始的索引 - 要添加的多个Line - - - - 将指定Line的元素添加指定索引处 - - 应插入 Line 的从零开始的索引 - 要添加的多个Line - - - - 从Assemblage中移除特定对象的第一个匹配项 - - 要从Assemblage中删除的Line的名称 - 如果成功移除了line,则为 true; 否则为 false - - - - 从Assemblage中移除特定名称的第一个匹配项 - - 要从Assemblage中删除的Line的名称 - 如果成功移除了line,则为 true; 否则为 false - - - - 从Assemblage中移除移除与条件相匹配的所有Line - - 要从Assemblage中删除的Line - - - - 从Assemblage中移除移除与名称相匹配的所有Line - - 要从Assemblage中删除的Line的名称 - - - - 移除Assemblage的指定索引处的Line - - 要移除的Line的从零开始的索引 - - - - 确定某Line是否在Assemblage中 - - 要在Assemblage中定位的Line - 如果在Assemblage中找到line,则为True; 否则为false - - - - 确定某Sub是否在Assemblage中 - - 要在Assemblage中定位的Sub - 如果在Assemblage中找到line,则为True; 否则为false - - - - 确定某Line(名字定位)是否在Assemblage中 - - Line的名字 - 如果在Assemblage中找到相同的名字,则为True; 否则为false - - - - 确定某sub(名字定位)是否在Assemblage中 - - sub的名字 - 如果在Assemblage的sub中找到相同的名字,则为True; 否则为false - - - - 匹配拥有相同名称的Line的所有元素 - - 用于定义匹配的名称 - 如果找到相同名称的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 匹配拥有相同名称和信息的Line的所有元素 - - 用于定义匹配的名称 - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同名称和信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 匹配拥有相同信息的Line的所有元素 - - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的名称 - 如果找到相同名称的第一个Line,则为该Line; 否则为null - - - - 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的名称 - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null - - - - 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同信息的第一个Line,则为该Line; 否则为null - - - - 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line - - 用于定义匹配的名称 - 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line - - - - 匹配拥有相同名称的Sub的所有元素 - - 用于定义匹配的名称 - 如果找到相同名称的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 匹配拥有相同名称和信息的Sub的所有元素 - - 用于定义匹配的名称 - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同名称和信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 匹配拥有相同信息的Sub的所有元素 - - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array - - - - 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的名称 - 如果找到相同名称的第一个Sub,则为该Line; 否则为null - - - - 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的名称 - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同名称和信息的第一个Sub,则为该Line; 否则为null - - - - 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 - - 用于定义匹配的信息 (去除关键字的文本) - 如果找到相同信息的第一个Sub,则为该Line; 否则为null - - - - 搜索全部相似名称的Line的所有元素 - - %字段% - 如果找到相似名称的Line,则为数组; 否则为一个空的Array - - - - 搜索字段是否出现在Line名称,并返回整个Assemblage中的第一个匹配元素 - - %字段% - 如果找到相似名称的第一个Line,则为该Line; 否则为null - - - - 搜索全部相似名称的Sub的所有元素 - - %字段% - 如果找到相似名称的Line,则为该数组; 否则为一个空的Array - - - - 搜索字段是否出现在Sub名称,并返回整个Assemblage中的第一个匹配元素 - - %字段% - 如果找到相同名称的第一个Sub,则为该Sub; 否则为null - - - - 搜索相同名称的Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 - - 用于定义匹配的名称 - 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - - - - 搜索相同名称的Line,并返回整个Assemblage中全部匹配的Line从零开始的索引 - - 用于定义匹配的名称 - 如果找到相同名称的Line的元素,则为该元素的从零开始的索引组; 否则为空的Array - - - - 获得Assemblage目前储存的Line数量 - - - - - 从指定的字符串加载LPS文档 - - 包含要加载的LPS文档的字符串 - - - - 返回一个Assemblage的第一个元素。 - - 要返回的第一个元素 - - - - 返回一个Assemblage的最后一个元素。 - - 要返回的最后一个元素 - - - - 返回循环访问 Assemblage 的枚举数。 - - 用于 Assemblage 的枚举数 - - - - 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line - - 用于定义匹配的名称 - 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line - - - - 将当前Documents转换成文本格式 - - LinePutScript的文本格式 - - - - 获得该LPS文档的长哈希代码 - - 64位哈希代码 - - - - 获得该LPS文档的哈希代码 - - 32位哈希代码 - - - - 确认对象是否等于当前对象 - - Subs - - - - - 获得当前文档大小 单位:字符 - - - - - 是否只读 - - - - - 通过引索修改lps中Line内容 - - 要获得或设置的引索 - 引索指定的Line - - - - 获得bool属性的line - - 用于定义匹配的名称 - 如果找到相同名称的line,则为True; 否则为false - - - - 设置bool属性的line - - 用于定义匹配的名称 - - 如果为ture,则在没有相同name为lineName的line时候添加新的line - 如果为false,则删除所有name为lineName的line - - - - - 获得int属性的line - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的line,返回line中储存的int值 - 如果没找到,则返回默认值 - - - - - 设置int属性的line - - 用于定义匹配的名称 - 储存进line的int值 - - - - 获得long属性的line - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的line,返回line中储存的long值 - 如果没找到,则返回默认值 - - - - - 设置long属性的line - - 用于定义匹配的名称 - 储存进line的long值 - - - - 获得String属性的line - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的line,返回line中储存的string值 - 如果没找到,则返回默认值 - - - - - 设置String属性的line - - 用于定义匹配的名称 - 储存进line的String值 - - - - 获得double属性的line - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的line,返回line中储存的double值 - 如果没找到,则返回默认值 - - - - - 设置double属性的line - - 用于定义匹配的名称 - 储存进line的double值 - - - - 获得double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的line,返回line中储存的double(long)值 - 如果没找到,则返回默认值 - - - - - 设置double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 - - 用于定义匹配的名称 - 储存进line的double(long)值 - - - - 获得DateTime属性的line - - 用于定义匹配的名称 - 如果没找到返回的默认值 - - 如果找到相同名称的line,返回line中储存的DateTime值 - 如果没找到,则返回默认值 - - - - - 设置DateTime属性的line - - 用于定义匹配的名称 - 储存进line的DateTime值 - - - - 获取或设置 String 属性的line - - (gstr)用于定义匹配的名称 - 获取或设置对 String 属性的Line - - - - 获取或设置 Bool 属性的line - - (gbol)用于定义匹配的名称 - 获取或设置对 bool 属性的Line - - - - 获取或设置 Int 属性的line - - (gint)用于定义匹配的名称 - 获取或设置对 int 属性的Line - - - - 获取或设置 Long 属性的line - - (gi64)用于定义匹配的名称 - 获取或设置对 long 属性的Line - - - - 获取或设置 Double 属性的line - - (gdbe)用于定义匹配的名称 - 获取或设置对 double 属性的Line - - - - 获取或设置 Double(long) 属性的line 通过转换long获得更精确的小数,小数位最大保留9位 - - (gflt)用于定义匹配的名称 - 获取或设置对 double 属性的line - - - - 获取或设置 DateTime 属性的line - - (gdbe)用于定义匹配的名称 - 获取或设置对 double 属性的line - - - - 搜索相同Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 - - 用于定义匹配的Line - 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 - - - - 将指定的Line添加到指定索引处 - - 应插入 Line 的从零开始的索引 - 要添加的Line - - - - 将指定的Line添加到Assemblage列表的末尾 - - 要添加的Line - - - - 移除Assemblage中所有的Line - - - - - 将整个array复制到Assemblage - - 复制到Assemblage的Line列表 - 从零开始的引索,从引索处开始复制 - - - - 返回一个新List,包含所有Line - - 所有储存的Line - 子类 LinePutScript最基础的类 @@ -4120,6 +4254,12 @@ lpsSub文本 + + + 加载 通过lps文本创建一个子类 + + lps文本 + 通过名字和信息创建新的Sub @@ -4127,6 +4267,13 @@ 名称 信息 (正常版本) + + + 通过名字和信息创建新的Sub + + 名称 + 信息 (正常版本) + 通过名字和信息创建新的Sub @@ -4134,6 +4281,188 @@ 名称 多个信息 (正常版本) + + + 通过Sub创建新的Sub + + 其他Sub + + + + 将其他Sub内容拷贝到本Sub + + 其他Sub + + + + 名称 没有唯一性 + + + + + ID 根据Name生成 没有唯一性 + + + + + 信息 (去除关键字的文本) + + + + + 信息 (正常) + + + + + 获得Info的String结构 + + + + + 信息 (int) + + + + + 信息 (int64) + + + + + 信息 (double) + + + + + 信息 (bool) + + + + + 返回循环访问 Info集合 的枚举数。 + + 用于 Info集合 的枚举数 + + + + 返回一个 Info集合 的第一个string。 + + 要返回的第一个string + + + + 返回一个 Info集合 的最后一个string。 + + 要返回的最后一个string + + + + 退回Info的反转义文本 (正常显示) + + info的反转义文本 (正常显示) + + + + 退回Info集合的转义文本集合 (正常显示) + + info的转义文本集合 (正常显示) + + + + 将当前Sub转换成文本格式 (info已经被转义/去除关键字) + + Sub的文本格式 (info已经被转义/去除关键字) + + + + 获得该Sub的哈希代码 + + 32位哈希代码 + + + + 获得该Sub的长哈希代码 + + 64位哈希代码 + + + + 确认对象是否等于当前对象 + + Subs + + + + + 将当前sub与另一个sub进行比较,并退回一个整数指示在排序位置中是位于另一个对象之前之后还是相同位置 + + 另一个sub + 值小于零时排在 other 之前 值等于零时出现在相同排序位置 值大于零则排在 other 之后 + + + + 克隆一个Sub + + 相同的sub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 分割字符串 diff --git a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/Panuon.WPF.UI.dll b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/Panuon.WPF.UI.dll index 9054cb6..3e155b4 100644 Binary files a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/Panuon.WPF.UI.dll and b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/Panuon.WPF.UI.dll differ diff --git a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.dll b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.dll index ee11842..0321bab 100644 Binary files a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.dll and b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.dll differ diff --git a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.xml b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.xml index 258b20a..87cced2 100644 --- a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.xml +++ b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet-Simulator.Core.xml @@ -37,6 +37,11 @@ 刷新时间时会调用该方法,在所有任务处理完之后 + + + 是否开始运行 + + 自动加载触摸事件 @@ -310,6 +315,12 @@ 说话内容 + + + 根据消耗计算相关数据 + + 过去时间倍率 + 定点移动位置向量 @@ -733,6 +744,21 @@ 说话 (结束) + + + 说话 (开始) + + + + + 说话 (循环) + + + + + 说话 (结束) + + 待机 模式1 (开始) @@ -795,7 +821,7 @@ 动画 类型 - + 添加动画 自动创建 @@ -808,7 +834,7 @@ 随机数字典(用于确保随机动画不会错位) - + 查找动画 @@ -908,6 +934,36 @@ 加载更多设置,新的替换后来的,允许空内容 + + + 无:不执行动作 + + + + + 默认说话 + + + + + 严肃 + + + + + 闪亮 + + + + + 自己 + + + + + 错误 + + IEyeTracking.xaml 的交互逻辑 @@ -972,7 +1028,7 @@ Picture.xaml 的交互逻辑 - + 新建新静态图像 @@ -1028,7 +1084,7 @@ 图片资源 - + 新建 PNG 动画 @@ -1211,159 +1267,164 @@ 宠物介绍 - + 游戏存档 - + 宠物名字 - + 金钱 - + 经验值 - + 等级 - + 升级所需经验值 - + 体力 0-100 - + 变化 体力 - + 饱腹度 - + 变化 食物 - + 口渴度 - + 变化 口渴度 - + 心情 - + 变化 心情 - + 健康(生病)(隐藏) - + 好感度(隐藏)(累加值) - + 清除变化 - + 宠物状态模式 - + 高兴 - + 普通 - + 状态不佳 - + 生病(躺床) - + 计算宠物当前状态 - + 新游戏 - + 读档 - + + + 读档 + + + 存档 存档行 - + 当前正在的状态 - + 默认:啥都没干 - + 正在干活, workingobj指示正在干啥活 - + 学习中 - + 玩耍中 diff --git a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet.Plugin.DemoClock.dll b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet.Plugin.DemoClock.dll index ed44c3a..1da3639 100644 Binary files a/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet.Plugin.DemoClock.dll and b/VPet.Plugin.DemoClock/1100_DemoClock/plugin/VPet.Plugin.DemoClock.dll differ diff --git a/VPet.Plugin.DemoClock/Setting.cs b/VPet.Plugin.DemoClock/Setting.cs index c3e2045..62e53fd 100644 --- a/VPet.Plugin.DemoClock/Setting.cs +++ b/VPet.Plugin.DemoClock/Setting.cs @@ -17,7 +17,7 @@ namespace VPet.Plugin.DemoClock tomato_resttime = 15; tomato_resttimelong = 45; } - public Setting(Line line) : base(line) + public Setting(ILine line) : base(line) { timeshifting = GetFloat("timeshifting", 0); hour24 = GetBool("hour24"); diff --git a/VPet.Plugin.DemoClock/TimeClock.xaml.cs b/VPet.Plugin.DemoClock/TimeClock.xaml.cs index 3b31d2f..b5bf2a4 100644 --- a/VPet.Plugin.DemoClock/TimeClock.xaml.cs +++ b/VPet.Plugin.DemoClock/TimeClock.xaml.cs @@ -147,7 +147,7 @@ namespace VPet.Plugin.DemoClock TTimes.Text = diff.ToString(@"ss\:ff"); if (TimeSpanChanged) { - CountTimer.Interval = TimeSpan.FromMilliseconds(10); + CountTimer.Interval = TimeSpan.FromMilliseconds(50); TimeSpanChanged = false; } } @@ -262,7 +262,7 @@ namespace VPet.Plugin.DemoClock TOthers.Visibility = Visibility.Collapsed; IsPause = false; PauseTime = TimeSpan.Zero; - CountTimer.Interval = TimeSpan.FromMilliseconds(10); + CountTimer.Interval = TimeSpan.FromMilliseconds(50); CountTimer.Start(); Master.mode = Mode.Timing; } diff --git a/VPet.Plugin.DemoClock/VPet.Plugin.DemoClock.csproj b/VPet.Plugin.DemoClock/VPet.Plugin.DemoClock.csproj index 85dcd3e..507f76d 100644 --- a/VPet.Plugin.DemoClock/VPet.Plugin.DemoClock.csproj +++ b/VPet.Plugin.DemoClock/VPet.Plugin.DemoClock.csproj @@ -33,13 +33,13 @@ - ..\packages\LinePutScript.1.6.1\lib\net462\LinePutScript.dll + ..\packages\LinePutScript.1.8.0\lib\net462\LinePutScript.dll ..\packages\Panuon.WPF.1.0.1\lib\net462\Panuon.WPF.dll - - ..\packages\Panuon.WPF.UI.1.1.8.5\lib\net462\Panuon.WPF.UI.dll + + ..\packages\Panuon.WPF.UI.1.1.11-beta\lib\net462\Panuon.WPF.UI.dll @@ -53,7 +53,7 @@ 4.0 - ..\packages\VPet-Simulator.Core.0.1.1\lib\net462\VPet-Simulator.Core.dll + ..\packages\VPet-Simulator.Core.0.1.3\lib\net462\VPet-Simulator.Core.dll ..\packages\VPet-Simulator.Windows.Interface.0.1.2\lib\net462\VPet-Simulator.Windows.Interface.dll diff --git a/VPet.Plugin.DemoClock/packages.config b/VPet.Plugin.DemoClock/packages.config index a966889..b26047b 100644 --- a/VPet.Plugin.DemoClock/packages.config +++ b/VPet.Plugin.DemoClock/packages.config @@ -1,8 +1,8 @@  - + - - + + \ No newline at end of file diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/icon.png b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/icon.png new file mode 100644 index 0000000..85f0e4e Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/icon.png differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/info.lps b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/info.lps new file mode 100644 index 0000000..74dea62 --- /dev/null +++ b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/info.lps @@ -0,0 +1,2 @@ +vupmod#EdgeTTS:|author#lorisyounger:|gamever#100:|ver#100:| +intro#桌宠说话的时候附带语音,使用EdgeTTS:| \ No newline at end of file diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/EdgeTTS.Framework.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/EdgeTTS.Framework.dll new file mode 100644 index 0000000..401677d Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/EdgeTTS.Framework.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/LinePutScript.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/LinePutScript.dll new file mode 100644 index 0000000..2f5c1a0 Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/LinePutScript.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/LinePutScript.xml b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/LinePutScript.xml new file mode 100644 index 0000000..3e8fefe --- /dev/null +++ b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/LinePutScript.xml @@ -0,0 +1,4497 @@ + + + + LinePutScript + + + + + 将改内容转换成Line + + + + + 将改内容转换成Line + + + + + 将改内容转换成Line + + 转换方法 + 自定义转换方法(ConvertFunction) + 指定名称 + 如果为类,指定转换ILine的类型,默认为T + 强制转换内容为String (多用于当前类为Sub) + + + + 自定义转换方法 + + + + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + + + + 转换方法 + + + + + 指定名称 + + + + + 如果为类,指定转换ILine的类型,默认为T + + + + + 将该文本转换成Line + + + + + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + 转换结果 + + + + 序列化相关转换操作 + + + + + 转换方法: 继承该方法并实现Convert/ConvertBack + + + + + 转换方法: 继承该方法并实现Convert/ConvertBack + + + + + 指定转换方法 + + 要转换的值 + String:Info + + + + 指定反转方法 + + 储存的Info + 要转换的值 + + + + 通过Type获取转换方法 + + ConvertFunction + 要转换的值 + String:Info + + + + 通过Type获取转换方法 + + ConvertFunction + 储存的Info + 要转换的值 + + + + 指定转换类型(非必须) + + + + + 默认: 自动判断 + + + + + 字符串: ToString直接储存 + + + + + 浮点数(long): *1000000000 ConvertToInt64 + + + + + 时间 + + + + + 枚举: ToString/Enum.Prase + + + + + 列表: 根据 id:值 进行储存 + + + + + 列表: 根据 id:值 进行储存 + + + + + 字典: 根据 字典 结构进行储存 + + + + + 类: 将进行Converter递归 + + + + + 自定转换函数 + + + + + 将指定的对象序列化为TLine列表 + + Line + 要转换的对象 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + TLine列表 + + + + 将指定的对象序列化为TLPS + + LPS + Line + 要转换的对象 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + LPS + + + + 将指定的对象序列化为TLine + + Line + 要转换的对象 + 行名字 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + Line + + + + 将指定的对象序列化为LPS (使用默认参数) + + 要转换的对象 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + LPS + + + + 将指定的对象序列化为Line (使用默认参数) + + 要转换的对象 + 行名字 + + 强制转换内容为String (多用于当前类为Sub) + false: 自动判断 + true: 强制转换String + + Line + + + + 获取指定对象类型的转换类型 + + 对象类型 + 附加参数,若有 + 转换类型 + + + + 获取指定对象类型的是否可以转换为String + + 转换方法 + + + + 将指定的对象序列化为String + + 需要序列化的object + 转换方法,默认自动判断 + 附加参数,若有 + 退回序列化的String + + + + 将指定的对象序列化为TLine + + + 需要序列化的object + 转换方法,默认自动判断 + 附加参数,若有 + 行名字 + + + + + 将String转换为指定Type的Object + + String值 + 要转换的Type + 转换方法,默认自动判断 + 附加参数,若有 + 指定Type的Object + + + + 将ISub转换为指定Type的Object + + ISub + 要转换的Type + 转换方法,默认自动判断 + 附加参数,若有 + 指定Type的Object + + + + 将指定的LPS反序列化为T对象 + + 想要获得的类型 + ILPS + 生成的对象 + + + + 将指定的ISub/ILine反序列化为T对象 + + 想要获得的类型 + ISub/ILine + 生成的对象 + + + + 将指定的ILine列表反序列化为T对象 + + 想要获得的类型 + ILine列表 + 生成的对象 + + + + 通过字典类型的行, Name不会重复 + + + + + 子项目 + + + + + 文本 在末尾没有结束行号的文本 (去除关键字的文本) + + + + + 文本 在末尾没有结束行号的文本 (正常) + + + + + 获得Text的String结构 + + + + + 文本 (int) + + + + + 文本 (int64) + + + + + 文本 (double) + + + + + 注释 ///为注释 + + + + + 获取Sub数量 + + + + + 是否只读 + + + + + 通过引索修改Line中Sub内容(错误:字典没有引索) + + 要获得或设置的引索 + 引索指定的Sub + + + + 将指定的Sub添加到Subs列表的末尾 + + 要添加的Sub + + + + 若无相同名称(Name)的Sub,则将指定的Sub添加到Subs列表的末尾 + 若有,则替换成要添加的Sub + + 要添加的Sub + + + + 将指定Sub的元素添加到Subs的末尾 + + 要添加的多个Sub + + + + 将指定的Sub添加到Subs列表的末尾 + + 要添加的Sub + + + + 移除Line中所有的Sub + + + + + 返回一个值,该值指示指定的字段是否出现在Subs的Sub的名字 + + 字段 + 如果在Line集合中找到符合的名字,则为True; 否则为false + + + + 确定某Sub是否在Line集合中 + + 要在Line集合中定位的Sub + 如果在Line集合中找到sub,则为True; 否则为false + + + + 将整个array复制到Line的Subs + + 复制到Subs的Sub列表 + 从零开始的引索,从引索处开始复制 + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 匹配拥有相同名称的Line或sub的所有元素(注意:在字典中,信息是唯一的) + + 用于定义匹配的名称 + 如果找到相同名称的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line或sub的所有元素(注意:在字典中,信息是唯一的) + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line或sub的所有元素(注意:在字典中,信息是唯一的) + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 返回一个 Subs 的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个 Subs 的最后一个元素。 + + 要返回的最后一个元素 + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 获得bool属性的sub + + 用于定义匹配的名称 + 如果找到相同名称的sub,则为True; 否则为false + + + + 设置bool属性的sub + + 用于定义匹配的名称 + + 值 + + + + + 获得int属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的sub + + 用于定义匹配的名称 + 储存进sub的int值 + + + + 获得long属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的sub + + 用于定义匹配的名称 + 储存进sub的long值 + + + + 获得double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 储存进sub的double(long)值 + + + + 获得DateTime属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的sub + + 用于定义匹配的名称 + 储存进sub的DateTime值 + + + + 获得String属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的String值 + 如果没找到,则返回默认值 + + + + + 设置String属性的sub + + 用于定义匹配的名称 + 储存进sub的String值 + + + + 获得double属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的sub + + 用于定义匹配的名称 + 储存进sub的double值 + + + + 通过名字和信息创建新的Line + + 名称 + 信息 (正常) + 文本 在末尾没有结束行号的文本 (正常) + 子类集合 + + + + 将其他Line内容拷贝到本Line + + 其他line + + + + 退回Text的反转义文本 (正常显示) + + Text的反转义文本 (正常显示) + + + + 将指定的Sub添加到指定索引处(失效:字典没有顺序) + + 应插入 Sub 的从零开始的索引(失效) + 要添加的Sub + + + + 将指定Sub的元素添加指定索引处(失效:字典没有顺序) + + 应插入 Sub 的从零开始的索引 + 要添加的多个Sub + + + + 从Subs中移除特定名称 + + 要从Subs中删除的Sub的名称 + 如果成功移除了Sub,则为 true; 否则为 false + + + + 从Subs中移除特定名称的所有元素(失效:字典为单一性) + + 要从Subs中删除的Sub的名称 + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Sub,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Subs中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的sub从零开始的索引(错误:字典没有引索) + + 用于定义匹配的名称 + 如果找到相同名称的sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的Sub从零开始的索引(错误:字典没有引索) + + 用于定义匹配的Sub + 如果找到相同名称的Sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Sub,并返回整个Sub中全部匹配的sub从零开始的索引(错误:字典没有引索) + + 用于定义匹配的名称 + 如果找到相同名称的sub的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) + + Line的文本格式 (info已经被转义/去除关键字) + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) + + Line的文本格式 (info已经被转义/去除关键字) + + + + 返回一个新List,包含所有Subs + + 所有储存的Subs + + + + 加载 通过lps文本创建一个子类 + + lps文本 + + + + 获得该Line的长哈希代码 + + 64位哈希代码 + + + + 获得该Line的哈希代码 + + 32位哈希代码 + + + + 将指定的Sub添加到指定索引处 (失效:字典没有顺序) + + 应插入 Sub 的从零开始的索引(失效) + 要添加的Sub + + + + 从Subs中移除特定引索的Sub (错误:字典没有顺序) + + 要删除Sub的引索 + + + + 从Subs中移除特定对象的第一个匹配项 + + 要从Subs中删除的Sub + 如果成功移除了Sub,则为 true; 否则为 false + + + + 返回循环访问 Subs 的枚举数。 + + 用于 Subs 的枚举数 + + + + 获取或设置 String 属性的sub + + (gstr)用于定义匹配的名称 + 获取或设置对 String 属性的Sub + + + + 获取或设置 Bool 属性的sub + + (gbol)用于定义匹配的名称 + 获取或设置对 bool 属性的Sub + + + + 获取或设置 Int 属性的sub + + (gint)用于定义匹配的名称 + 获取或设置对 int 属性的Sub + + + + 获取或设置 Long 属性的sub + + (gi64)用于定义匹配的名称 + 获取或设置对 long 属性的Sub + + + + 获取或设置 Double 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 Double(long) 属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 DateTime 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 通过字典类型的文件 包括文件读写等一系列操作 + + + + + 集合 全部文件的数据 + + + + + 创建一个 LpsDocument + + + + + 从指定的字符串创建 LpsDocument + + 包含要加载的LPS文档的字符串 + + + + 将指定的Line添加到Assemblage列表 + + 要添加的Line + + + + 若无相同名称(Name)的Line,则将指定的Line添加到Assemblage列表 + 若有,则替换成要添加的Line + + 要添加的Line + + + + 将指定Line的元素添加到Assemblage + + 要添加的多个Line + + + + 将指定Line的元素添加到Assemblage + + 要添加的多个Line + + + + 将指定的Line添加到指定索引处(失效:字典没有顺序) + + 应插入 Line 的从零开始的索引 + 要添加的Line + + + + 将指定Line的元素添加指定索引处(失效:字典没有顺序) + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 将指定Line的元素添加指定索引处(失效:字典没有顺序) + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 从Assemblage中移除特定对象的第一个匹配项 + + 要从Assemblage中删除的Line的名称 + 如果成功移除了line,则为 true; 否则为 false + + + + 从Assemblage中移除特定名称的第一个匹配项 + + 要从Assemblage中删除的Line的名称 + 如果成功移除了line,则为 true; 否则为 false + + + + 从Assemblage中移除移除与条件相匹配的所有Line (失效:字典没有顺序) + + 要从Assemblage中删除的Line + + + + 从Assemblage中移除移除与名称相匹配的所有Line (失效:字典没有顺序) + + 要从Assemblage中删除的Line的名称 + + + + 移除Assemblage的指定索引处的Line (错误:字典没有引索) + + 要移除的Line的从零开始的索引 + + + + 确定某Line是否在Assemblage中 + + 要在Assemblage中定位的Line + 如果在Assemblage中找到line,则为True; 否则为false + + + + 确定某Sub是否在Assemblage中 + + 要在Assemblage中定位的Sub + 如果在Assemblage中找到line,则为True; 否则为false + + + + 确定某Line(名字定位)是否在Assemblage中 + + Line的名字 + 如果在Assemblage中找到相同的名字,则为True; 否则为false + + + + 确定某sub(名字定位)是否在Assemblage中 + + sub的名字 + 如果在Assemblage的sub中找到相同的名字,则为True; 否则为false + + + + 匹配拥有相同名称的Line的所有元素(注意:在字典中,信息是唯一的) + + 用于定义匹配的名称 + 如果找到相同名称的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line的所有元素(注意:在字典中,信息是唯一的) + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line的所有元素(注意:在字典中,信息是唯一的) + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 匹配拥有相同名称的Sub的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Sub的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Sub的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Sub,则为该Line; 否则为null + + + + 搜索全部相似名称的Line的所有元素 + + %字段% + 如果找到相似名称的Line,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Line,则为该Line; 否则为null + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Line,则为该数组; 否则为一个空的Array + + + + 搜索字段是否出现在Sub名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相同名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 (错误:字典没有引索) + + 用于定义匹配的名称 + 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Line,并返回整个Assemblage中全部匹配的Line从零开始的索引 (错误:字典没有引索) + + 用于定义匹配的名称 + 如果找到相同名称的Line的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 获得Assemblage目前储存的Line数量 + + + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + + + 返回一个Assemblage的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个Assemblage的最后一个元素。 + + 要返回的最后一个元素 + + + + 返回循环访问 Assemblage 的枚举数。 + + 用于 Assemblage 的枚举数 + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 将当前Documents转换成文本格式 + + LinePutScript的文本格式 + + + + 获得该LPS文档的长哈希代码 + + 64位哈希代码 + + + + 获得该LPS文档的哈希代码 + + 32位哈希代码 + + + + 确认对象是否等于当前对象 + + Subs + + + + + 获得当前文档大小 单位:字符 + + + + + 是否只读 + + + + + 通过引索修改lps中Line内容 (错误:字典没有引索) + + 要获得或设置的引索 + 引索指定的Line + + + + 获得bool属性的line + + 用于定义匹配的名称 + 如果找到相同名称的line,则为True; 否则为false + + + + 设置bool属性的line + + 用于定义匹配的名称 + + 如果为ture,则在没有相同name为lineName的line时候添加新的line + 如果为false,则删除所有name为lineName的line + + + + + 获得int属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的line + + 用于定义匹配的名称 + 储存进line的int值 + + + + 获得long属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的line + + 用于定义匹配的名称 + 储存进line的long值 + + + + 获得String属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的string值 + 如果没找到,则返回默认值 + + + + + 设置String属性的line + + 用于定义匹配的名称 + 储存进line的String值 + + + + 获得double属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的line + + 用于定义匹配的名称 + 储存进line的double值 + + + + 获得double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 储存进line的double(long)值 + + + + 获得DateTime属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的line + + 用于定义匹配的名称 + 储存进line的DateTime值 + + + + 获取或设置 String 属性的line + + (gstr)用于定义匹配的名称 + 获取或设置对 String 属性的Line + + + + 获取或设置 Bool 属性的line + + (gbol)用于定义匹配的名称 + 获取或设置对 bool 属性的Line + + + + 获取或设置 Int 属性的line + + (gint)用于定义匹配的名称 + 获取或设置对 int 属性的Line + + + + 获取或设置 Long 属性的line + + (gi64)用于定义匹配的名称 + 获取或设置对 long 属性的Line + + + + 获取或设置 Double 属性的line + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Line + + + + 获取或设置 Double(long) 属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)用于定义匹配的名称 + 获取或设置对 double 属性的line + + + + 获取或设置 DateTime 属性的line + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的line + + + + 搜索相同Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 (错误:字典没有引索) + + 用于定义匹配的Line + 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 将指定的Line添加到指定索引处 (失效:字典没有顺序) + + 应插入 Line 的从零开始的索引 + 要添加的Line + + + + 将指定的Line添加到Assemblage列表 + + 要添加的Line + + + + 移除Assemblage中所有的Line + + + + + 将整个array复制到Assemblage + + 复制到Assemblage的Line列表 + 从零开始的引索,从引索处开始复制 + + + + 返回一个新List,包含所有Line + + 所有储存的Line + + + + Get Object 可以通过强制转换进行更轻松的getset操作 + + + + + 储存在gobject中的值 + + + + + 生成 Gobj + + + + + string 可以通过强制转换进行更轻松的getset操作 + 例: line[(gstr)"subname"] + + + + + 生成 Gobj + + + + + 强制转换gobjcet成string + + gobject + + + + 强制转换string成gobjcet + + string + + + + bool 可以通过强制转换进行更轻松的getset操作 + 例: line[(gbol)"subname"] + + + + + 生成 Gobj + + + + + 强制转换gobjcet成string + + gobject + + + + 强制转换string成gobjcet + + string + + + + int 可以通过强制转换进行更轻松的getset操作 + 例: line[(gint)"subname"] + + + + + 生成 Gobj + + + + + 强制转换gobjcet成string + + gobject + + + + 强制转换string成gobjcet + + string + + + + long 可以通过强制转换进行更轻松的getset操作 + 例: line[(gi64)"subname"] + + + + + 生成 Gobj + + + + + 强制转换gobjcet成string + + gobject + + + + 强制转换string成gobjcet + + string + + + + double 可以通过强制转换进行更轻松的getset操作 + 例: line[(gdbe)"subname"] + + + + + 生成 Gobj + + + + + 强制转换gobjcet成string + + gobject + + + + 强制转换string成gobjcet + + string + + + + DateTime 可以通过强制转换进行更轻松的getset操作 + 例: line[(gdat)"subname"] + + + + + 生成 Gobj + + + + + 强制转换gobjcet成string + + gobject + + + + 强制转换string成gobjcet + + string + + + + double(long) 通过转换long获得更精确的小数 + 可以通过强制转换进行更轻松的getset操作 + 例: line[(gflt)"subname"] + + + + + 生成 Gobj + + + + + 强制转换gobjcet成string + + gobject + + + + 强制转换string成gobjcet + + string + + + + 支持使用GOBJ获取设置的接口 + + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 获得bool属性的sub + + 用于定义匹配的名称 + 如果找到相同名称的sub,则为True; 否则为false + + + + 设置bool属性的sub + + 用于定义匹配的名称 + + 值 + + + + + 获得int属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的sub + + 用于定义匹配的名称 + 储存进sub的int值 + + + + 获得long属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的sub + + 用于定义匹配的名称 + 储存进sub的long值 + + + + 获得double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 储存进sub的double(long)值 + + + + 获得DateTime属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的sub + + 用于定义匹配的名称 + 储存进sub的DateTime值 + + + + 获得String属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的String值 + 如果没找到,则返回默认值 + + + + + 设置String属性的sub + + 用于定义匹配的名称 + 储存进sub的String值 + + + + 获得double属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的sub + + 用于定义匹配的名称 + 储存进sub的double值 + + + + 获取或设置 String 属性的sub + + (gstr)用于定义匹配的名称 + 获取或设置对 String 属性的Sub + + + + 获取或设置 Bool 属性的sub + + (gbol)用于定义匹配的名称 + 获取或设置对 bool 属性的Sub + + + + 获取或设置 Int 属性的sub + + (gint)用于定义匹配的名称 + 获取或设置对 int 属性的Sub + + + + 获取或设置 Long 属性的sub + + (gi64)用于定义匹配的名称 + 获取或设置对 long 属性的Sub + + + + 获取或设置 Double 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 Double(long) 属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 DateTime 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 行接口 包含多个子类的接口 继承自子类接口 + + + + + 通过名字和信息创建新的Line + + 名称 + 信息 (正常) + 文本 在末尾没有结束行号的文本 (正常) + 子类集合 + + + + 将其他Line内容拷贝到本Line + + 其他line + + + + 文本 在末尾没有结束行号的文本 (去除关键字的文本) + + + + + 文本 在末尾没有结束行号的文本 (正常) + + + + + 注释 ///为注释 + + + + + 文本 (int) + + + + + 文本 (int64) + + + + + 文本 (double) + + + + + 退回Text的反转义文本 (正常显示) + + Text的反转义文本 (正常显示) + + + + 将指定的Sub添加到Subs列表的末尾 + + 要添加的Sub + + + + 若无相同名称(Name)的Sub,则将指定的Sub添加到Subs列表的末尾 + 若有,则替换成要添加的Sub + + 要添加的Sub + + + + 将指定Sub的元素添加到Subs的末尾 + + 要添加的多个Sub + + + + 将指定的Sub添加到指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的Sub + + + + 将指定Sub的元素添加指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的多个Sub + + + + 从Subs中移除特定名称的第一个匹配项 + + 要从Subs中删除的Sub的名称 + 如果成功移除了Sub,则为 true; 否则为 false + + + + 从Subs中移除特定名称的所有元素 + + 要从Subs中删除的Sub的名称 + + + + 返回一个值,确定某Sub是否在Line集合中 + + 要在Line集合中定位的Sub的名字 + 如果在Line集合中找到符合的名字,则为True; 否则为false + + + + 匹配拥有相同名称的Line或sub的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line或sub的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line或sub的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Sub,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Subs中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的sub从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Sub,并返回整个Sub中全部匹配的sub从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的sub的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) + + Line的文本格式 (info已经被转义/去除关键字) + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) 将输出储存到StringBuilder + + 储存到的 StringBuilder + Line的文本格式 (info已经被转义/去除关键字) + + + + 返回一个 Subs 的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个 Subs 的最后一个元素。 + + 要返回的最后一个元素 + + + + 返回一个新List,包含所有Subs + + 所有储存的Subs + + + + 获得Text的String结构 + + + + + LPS接口 + + + + + 返回一个新List,包含所有Line + + 所有储存的Line + + + + 将指定的Line添加到Assemblage列表的末尾 + + 要添加的Line + + + + 若无相同名称(Name)的Line,则将指定的Line添加到Assemblage列表的末尾 + 若有,则替换成要添加的Line + + 要添加的Line + + + + 将指定Line的元素添加到Assemblage的末尾 + + 要添加的多个Line + + + + 将指定Line的元素添加到Assemblage的末尾 + + 要添加的多个Line + + + + 将指定的Line添加到指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的Line + + + + 将指定Line的元素添加指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 将指定Line的元素添加指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 从Assemblage中移除特定名称的第一个匹配项 + + 要从Assemblage中删除的Line的名称 + 如果成功移除了line,则为 true; 否则为 false + + + + 从Assemblage中移除移除与条件相匹配的所有Line + + 要从Assemblage中删除的Line + + + + 从Assemblage中移除移除与名称相匹配的所有Line + + 要从Assemblage中删除的Line的名称 + + + + 确定某Sub是否在Assemblage中 + + 要在Assemblage中定位的Sub + 如果在Assemblage中找到line,则为True; 否则为false + + + + 确定某Line(名字定位)是否在Assemblage中 + + Line的名字 + 如果在Assemblage中找到相同的名字,则为True; 否则为false + + + + 确定某sub(名字定位)是否在Assemblage中 + + sub的名字 + 如果在Assemblage的sub中找到相同的名字,则为True; 否则为false + + + + 匹配拥有相同名称的Line的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 匹配拥有相同名称的Sub的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Sub的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Sub的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Sub,则为该Line; 否则为null + + + + 搜索全部相似名称的Line的所有元素 + + %字段% + 如果找到相似名称的Line,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Line,则为该Line; 否则为null + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Line,则为该数组; 否则为一个空的Array + + + + 搜索字段是否出现在Sub名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相同名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Line,并返回整个Assemblage中全部匹配的Line从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的Line的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + + + 返回一个Assemblage的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个Assemblage的最后一个元素。 + + 要返回的最后一个元素 + + + + 获得该LPS文档的长哈希代码 + + 64位哈希代码 + + + + 获得该LPS文档的哈希代码 + + 32位哈希代码 + + + + 任何类型的值均可储存的接口 + + + + + 储存的数据 + + + + + 转换成为储存String类型 + + + + + 转换成 String 类型 + + + + + 转换成 long 类型 + + + + + 转换成 int 类型 + + + + + 转换成 double 类型 + + + + + 转换成 double(int64) 类型 + + + + + 转换成 DateTime 类型 + + + + + 转换成 bool 类型 + + + + + 设置 string 值 + + + + + 设置 int 值 + + + + + 设置 long 值 + + + + + 设置 double 值 + + + + + 设置 float 值 + + + + + 设置 DateTime 值 + + + + + 设置 bool 值 + + + + + 子类接口 LinePutScript最基础的类的最基础的接口 + + + + + 加载 通过lps文本创建一个子类 + + lps文本 + + + + 加载 通过名字和信息创建新的Sub + + 名称 + 信息 (正常版本) + + + + 将其他Sub内容拷贝到本Sub + + 其他Sub + + + + 名称 没有唯一性 + + + + + 信息 (去除关键字的文本) (string) + + + + + 信息 (去除关键字的文本) (可复制) + + + + + 信息 (去除关键字的文本) (可比较) + + + + + 信息 (正常) + + + + + 信息 (int) + + + + + 信息 (int64) + + + + + 信息 (double) + + + + + 信息 (bool) + + + + + 返回一个 Info集合 的第一个string。 + + 要返回的第一个string + + + + 返回一个 Info集合 的最后一个string。 + + 要返回的最后一个string + + + + 退回Info的反转义文本 (正常显示) + + info的反转义文本 (正常显示) + + + + 退回Info集合的转义文本集合 (正常显示) + + info的转义文本集合 (正常显示) + + + + 将当前Sub转换成文本格式 (info已经被转义/去除关键字) + + Sub的文本格式 (info已经被转义/去除关键字) + + + + 获得该Sub的哈希代码 + + 32位哈希代码 + + + + 获得该Sub的长哈希代码 + + 64位哈希代码 + + + + 获得Info的String结构 + + + + + 行 包含多个子类 继承自子类 + + + + + 创建一行 + + + + + 通过lpsLine文本创建一行 + + lpsSub文本 + + + + 加载 通过lps文本创建一个子类 + + lps文本 + + + + 通过名字和信息创建新的Line + + 名称 + 信息 (正常) + 文本 在末尾没有结束行号的文本 (正常) + 子类集合 + + + + 通过名字和信息创建新的Line + + 名称 + 信息 (正常) + 文本 在末尾没有结束行号的文本 (正常) + 子类集合 + + + + 通过其他Line创建新的Line + + 其他line + + + + 将其他Line内容拷贝到本Line + + 其他line + + + + 文本 在末尾没有结束行号的文本 (去除关键字的文本) + + + + + 文本 在末尾没有结束行号的文本 (正常) + + + + + 获得Text的String结构 + + + + + 注释 ///为注释 + + + + + 文本 (int) + + + + + 文本 (int64) + + + + + 文本 (double) + + + + + 退回Text的反转义文本 (正常显示) + + Text的反转义文本 (正常显示) + + + + 子项目 + + + + + 将指定的Sub添加到Subs列表的末尾 + + 要添加的Sub + + + + 若无相同名称(Name)的Sub,则将指定的Sub添加到Subs列表的末尾 + 若有,则替换成要添加的Sub + + 要添加的Sub + + + + 将指定Sub的元素添加到Subs的末尾 + + 要添加的多个Sub + + + + 将指定的Sub添加到指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的Sub + + + + 将指定Sub的元素添加指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的多个Sub + + + + 从Subs中移除特定对象的第一个匹配项 + + 要从Subs中删除的Sub + 如果成功移除了Sub,则为 true; 否则为 false + + + + 从Subs中移除特定名称的第一个匹配项 + + 要从Subs中删除的Sub的名称 + 如果成功移除了Sub,则为 true; 否则为 false + + + + 从Subs中移除特定名称的所有元素 + + 要从Subs中删除的Sub的名称 + + + + 确定某Sub是否在Line集合中 + + 要在Line集合中定位的Sub + 如果在Line集合中找到sub,则为True; 否则为false + + + + 返回一个值,确定某Sub是否在Line集合中 + + 要在Line集合中定位的Sub的名字 + 如果在Line集合中找到符合的名字,则为True; 否则为false + + + + 匹配拥有相同名称的Line或sub的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line或sub的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line或sub的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Sub,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Subs中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的sub从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Sub,并返回整个Sub中全部匹配的sub从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的sub的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) + + Line的文本格式 (info已经被转义/去除关键字) + + + + 将当前Line转换成文本格式 (info已经被转义/去除关键字) 将输出储存到StringBuilder + + 储存到的 StringBuilder + Line的文本格式 (info已经被转义/去除关键字) + + + + 获得该Line的长哈希代码 + + 64位哈希代码 + + + + 获得该Line的哈希代码 + + 32位哈希代码 + + + + 确认对象是否等于当前对象 + + Subs + + + + + 返回循环访问 Subs 的枚举数。 + + 用于 Subs 的枚举数 + + + + 返回一个 Subs 的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个 Subs 的最后一个元素。 + + 要返回的最后一个元素 + + + + 搜索与指定名称,并返回Line或整个Subs中的第一个匹配元素;若未找到,则新建并添加相同名称的Sub,并且返回这个Sub + + 用于定义匹配的名称 + 如果找到相同名称的第一个sub,则为该sub; 否则为新建的相同名称sub + + + + 获得bool属性的sub + + 用于定义匹配的名称 + 如果找到相同名称的sub,则为True; 否则为false + + + + 设置bool属性的sub + + 用于定义匹配的名称 + + 值 + + + + + 获得int属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的sub + + 用于定义匹配的名称 + 储存进sub的int值 + + + + 获得long属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的sub + + 用于定义匹配的名称 + 储存进sub的long值 + + + + 获得double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 储存进sub的double(long)值 + + + + 获得DateTime属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的sub + + 用于定义匹配的名称 + 储存进sub的DateTime值 + + + + 获得String属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的String值 + 如果没找到,则返回默认值 + + + + + 设置String属性的sub + + 用于定义匹配的名称 + 储存进sub的String值 + + + + 获得double属性的sub + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的sub,返回sub中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的sub + + 用于定义匹配的名称 + 储存进sub的double值 + + + + 获取或设置 String 属性的sub + + (gstr)用于定义匹配的名称 + 获取或设置对 String 属性的Sub + + + + 获取或设置 Bool 属性的sub + + (gbol)用于定义匹配的名称 + 获取或设置对 bool 属性的Sub + + + + 获取或设置 Int 属性的sub + + (gint)用于定义匹配的名称 + 获取或设置对 int 属性的Sub + + + + 获取或设置 Long 属性的sub + + (gi64)用于定义匹配的名称 + 获取或设置对 long 属性的Sub + + + + 获取或设置 Double 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 Double(long) 属性的sub 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取或设置 DateTime 属性的sub + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Sub + + + + 获取Sub数量 + + + + + 是否只读 + + + + + 通过引索修改Line中Sub内容 + + 要获得或设置的引索 + 引索指定的Sub + + + + 搜索相同名称的Sub,并返回整个Subs中第一个匹配的Sub从零开始的索引 + + 用于定义匹配的Sub + 如果找到相同名称的Sub的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 将指定的Sub添加到指定索引处 + + 应插入 Sub 的从零开始的索引 + 要添加的Sub + + + + 从Subs中移除特定引索的Sub + + 要删除Sub的引索 + + + + 将指定的Sub添加到Subs列表的末尾 + + 要添加的Sub + + + + 移除Line中所有的Sub + + + + + 将整个array复制到Line的Subs + + 复制到Subs的Sub列表 + 从零开始的引索,从引索处开始复制 + + + + 将当前line与另一个line进行比较,并退回一个整数指示在排序位置中是位于另一个对象之前之后还是相同位置 + + 另一个line + 值小于零时排在 other 之前 值等于零时出现在相同排序位置 值大于零则排在 other 之后 + + + + 克隆一个Line + + 相同的Line + + + + 返回一个新List,包含所有Subs + + 所有储存的Subs + + + + 文件 包括文件读写等一系列操作 + + + + + 集合 全部文件的数据 + + + + + 创建一个 LpsDocument + + + + + 从指定的字符串创建 LpsDocument + + 包含要加载的LPS文档的字符串 + + + + 将指定的Line添加到Assemblage列表的末尾 + + 要添加的Line + + + + 若无相同名称(Name)的Line,则将指定的Line添加到Assemblage列表的末尾 + 若有,则替换成要添加的Line + + 要添加的Line + + + + 将指定Line的元素添加到Assemblage的末尾 + + 要添加的多个Line + + + + 将指定Line的元素添加到Assemblage的末尾 + + 要添加的多个Line + + + + 将指定的Line添加到指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的Line + + + + 将指定Line的元素添加指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 将指定Line的元素添加指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的多个Line + + + + 从Assemblage中移除特定对象的第一个匹配项 + + 要从Assemblage中删除的Line的名称 + 如果成功移除了line,则为 true; 否则为 false + + + + 从Assemblage中移除特定名称的第一个匹配项 + + 要从Assemblage中删除的Line的名称 + 如果成功移除了line,则为 true; 否则为 false + + + + 从Assemblage中移除移除与条件相匹配的所有Line + + 要从Assemblage中删除的Line + + + + 从Assemblage中移除移除与名称相匹配的所有Line + + 要从Assemblage中删除的Line的名称 + + + + 移除Assemblage的指定索引处的Line + + 要移除的Line的从零开始的索引 + + + + 确定某Line是否在Assemblage中 + + 要在Assemblage中定位的Line + 如果在Assemblage中找到line,则为True; 否则为false + + + + 确定某Sub是否在Assemblage中 + + 要在Assemblage中定位的Sub + 如果在Assemblage中找到line,则为True; 否则为false + + + + 确定某Line(名字定位)是否在Assemblage中 + + Line的名字 + 如果在Assemblage中找到相同的名字,则为True; 否则为false + + + + 确定某sub(名字定位)是否在Assemblage中 + + sub的名字 + 如果在Assemblage的sub中找到相同的名字,则为True; 否则为false + + + + 匹配拥有相同名称的Line的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Line的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Line的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Line,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Line,则为该Line; 否则为null + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 匹配拥有相同名称的Sub的所有元素 + + 用于定义匹配的名称 + 如果找到相同名称的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同名称和信息的Sub的所有元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 匹配拥有相同信息的Sub的所有元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的Sub,其中所有元素均与指定谓词定义的条件匹配,则为该数组; 否则为一个空的Array + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 如果找到相同名称的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定名称和信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的名称 + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同名称和信息的第一个Sub,则为该Line; 否则为null + + + + 搜索与指定信息,并返回整个Assemblage中的第一个匹配元素 + + 用于定义匹配的信息 (去除关键字的文本) + 如果找到相同信息的第一个Sub,则为该Line; 否则为null + + + + 搜索全部相似名称的Line的所有元素 + + %字段% + 如果找到相似名称的Line,则为数组; 否则为一个空的Array + + + + 搜索字段是否出现在Line名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相似名称的第一个Line,则为该Line; 否则为null + + + + 搜索全部相似名称的Sub的所有元素 + + %字段% + 如果找到相似名称的Line,则为该数组; 否则为一个空的Array + + + + 搜索字段是否出现在Sub名称,并返回整个Assemblage中的第一个匹配元素 + + %字段% + 如果找到相同名称的第一个Sub,则为该Sub; 否则为null + + + + 搜索相同名称的Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 搜索相同名称的Line,并返回整个Assemblage中全部匹配的Line从零开始的索引 + + 用于定义匹配的名称 + 如果找到相同名称的Line的元素,则为该元素的从零开始的索引组; 否则为空的Array + + + + 获得Assemblage目前储存的Line数量 + + + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + + + 从指定的字符串加载LPS文档 + + 包含要加载的LPS文档的字符串 + + + + 返回一个Assemblage的第一个元素。 + + 要返回的第一个元素 + + + + 返回一个Assemblage的最后一个元素。 + + 要返回的最后一个元素 + + + + 返回循环访问 Assemblage 的枚举数。 + + 用于 Assemblage 的枚举数 + + + + 搜索与指定名称,并返回整个Assemblage中的第一个匹配元素; 若未找到,则新建并添加相同名称的Line,并且返回这个Line + + 用于定义匹配的名称 + 如果找到相同名称的第一个Line,则为该Line; 否则为新建的相同名称Line + + + + 将当前Documents转换成文本格式 + + LinePutScript的文本格式 + + + + 获得该LPS文档的长哈希代码 + + 64位哈希代码 + + + + 获得该LPS文档的哈希代码 + + 32位哈希代码 + + + + 确认对象是否等于当前对象 + + Subs + + + + + 获得当前文档大小 单位:字符 + + + + + 是否只读 + + + + + 通过引索修改lps中Line内容 + + 要获得或设置的引索 + 引索指定的Line + + + + 获得bool属性的line + + 用于定义匹配的名称 + 如果找到相同名称的line,则为True; 否则为false + + + + 设置bool属性的line + + 用于定义匹配的名称 + + 如果为ture,则在没有相同name为lineName的line时候添加新的line + 如果为false,则删除所有name为lineName的line + + + + + 获得int属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的line + + 用于定义匹配的名称 + 储存进line的int值 + + + + 获得long属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的line + + 用于定义匹配的名称 + 储存进line的long值 + + + + 获得String属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的string值 + 如果没找到,则返回默认值 + + + + + 设置String属性的line + + 用于定义匹配的名称 + 储存进line的String值 + + + + 获得double属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的line + + 用于定义匹配的名称 + 储存进line的double值 + + + + 获得double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + 用于定义匹配的名称 + 储存进line的double(long)值 + + + + 获得DateTime属性的line + + 用于定义匹配的名称 + 如果没找到返回的默认值 + + 如果找到相同名称的line,返回line中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的line + + 用于定义匹配的名称 + 储存进line的DateTime值 + + + + 获取或设置 String 属性的line + + (gstr)用于定义匹配的名称 + 获取或设置对 String 属性的Line + + + + 获取或设置 Bool 属性的line + + (gbol)用于定义匹配的名称 + 获取或设置对 bool 属性的Line + + + + 获取或设置 Int 属性的line + + (gint)用于定义匹配的名称 + 获取或设置对 int 属性的Line + + + + 获取或设置 Long 属性的line + + (gi64)用于定义匹配的名称 + 获取或设置对 long 属性的Line + + + + 获取或设置 Double 属性的line + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的Line + + + + 获取或设置 Double(long) 属性的line 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)用于定义匹配的名称 + 获取或设置对 double 属性的line + + + + 获取或设置 DateTime 属性的line + + (gdbe)用于定义匹配的名称 + 获取或设置对 double 属性的line + + + + 搜索相同Line,并返回整个Assemblage中第一个匹配的Line从零开始的索引 + + 用于定义匹配的Line + 如果找到相同名称的Line的第一个元素,则为该元素的从零开始的索引; 否则为 -1 + + + + 将指定的Line添加到指定索引处 + + 应插入 Line 的从零开始的索引 + 要添加的Line + + + + 将指定的Line添加到Assemblage列表的末尾 + + 要添加的Line + + + + 移除Assemblage中所有的Line + + + + + 将整个array复制到Assemblage + + 复制到Assemblage的Line列表 + 从零开始的引索,从引索处开始复制 + + + + 返回一个新List,包含所有Line + + 所有储存的Line + + + + 当前Line读取进度 + + + + + 读取读取进度当前Line 并且自动切换到下一Line + + 如何有则返回当前Line,如果没有则返回null + + + + 获取读取进度当前Line + + 如何有则返回当前Line,如果没有则返回null + + + + 将指定的Line添加到当前读取进度之后 + + 要添加的Line + + + + 新建的Line添加到当前读取进度之后 + + 要添加的行名称 + 行信息 + 行文本 + 行子类 + + + + 将指定的Sub添加到当前读取进度Line中 + + 要添加的子类 + + + + 将指定的Sub添加到当前读取进度Line中 + + 要添加的行名称 + 要添加的行信息 + + + + 将读取进度设置为0 + + + + + 将读取进度设置为上限 即最后一行 + + + + + 判断是否能够继续读取数据 + + 如果还有下一行,返回True,否则False + + + + Set Object 可以储存任何类型的值 对性能进行优化 + + + + + 储存Object的类型 + + + + + 字符串 + + + + + 布尔值 + + + + + 整数 + + + + + 整数64位 + + + + + 浮点数 + + + + + 浮点数(long) + + + + + 时间 + + + + + 类型 + + + + + 储存的数据 + + + + + 新建 SetObject: string + + + + + 新建 SetObject: string + + 值 + + + + 新建 SetObject: long + + 值 + + + + 新建 SetObject: int + + 值 + + + + 新建 SetObject: double + + 值 + + + + 新建 SetObject: String + + 值 + + + + 新建 SetObject: DateTime + + 值 + + + + 新建 SetObject: bool + + 值 + + + + 转换成为储存String类型 + + + + + 转换成 String 类型 + + + + + 转换成 long 类型 + + + + + 转换成 int 类型 + + + + + 转换成 double 类型 + + + + + 转换成 double(int64) 类型 + + + + + 转换成 DateTime 类型 + + + + + 转换成 bool 类型 + + + + + 设置 string 值 + + + + + 设置 int 值 + + + + + 设置 long 值 + + + + + 设置 double 值 + + + + + 设置 float 值 + + + + + 设置 DateTime 值 + + + + + 设置 bool 值 + + + + + 转换 String 为 SetObject + + + + + 转换 SetObject 为 String + + + + + 转换 int 为 SetObject + + + + + 转换 SetObject 为 int + + + + + 转换 long 为 SetObject + + + + + 转换 SetObject 为 long + + + + + 转换 double 为 SetObject + + + + + 转换 SetObject 为 double + + + + + 转换 bool 为 SetObject + + + + + 转换 SetObject 为 bool + + + + + 转换 DateTime 为 SetObject + + + + + 转换 SetObject 为 DateTime + + + + + 比较两个 SetObject 对象差距 + + + + + 比较两个 SetObject 对象差距 + + + + + 判断是否相等 + + 其他参数 + + + + + 比较两个 SetObject 对象是否相等 + + + + + 比较两个 SetObject 对象是否相等 + + + + + 克隆新的 SetObject + + + + + + 比较 SetObject 和 string 是否相等 + + + + + 比较 SetObject 和 long 是否相等 + + + + + 比较 SetObject 和 int 是否相等 + + + + + 比较 SetObject 和 double 是否相等 + + + + + 比较 SetObject 和 DateTime 是否相等 + + + + + 比较 SetObject 和 bool 是否相等 + + + + + 获取 SetObject 的 HashCode + + + + + + 转换成文本形式 + + + + + String 结构 通过String实时修改具体参数,为LineputScript提供第四层结构 + + + + + 是否为单线程 + + + + + 生成可以修改的String结构 + + 设置String方法 (非转义) + 获取String方法 (非转义) + 是否为单线程,如果为单线程,将会缓存数据列表,设置为true将会提高读取效率 + + + + 获取相关项目String + + 项目名称 + 默认值 + 如果找到项目则返回值;否则为返回默认值 + + + + 设置相关项目String + + 项目名称 + 设置项目的String值 + + + + 获取相关项目String 如果为空则退回"" + + + + + 获得bool属性的项目 + + 项目名称 + 如果没找到返回的默认值 + 如果找到项目则返回项目中的值,若未找到则返回默认值 + + + + 获得bool属性的项目 + + 项目名称 + 如果找到项目则返回项目中的值,若未找到则返回false + + + + 设置bool属性的项目 + + 项目名称 + + 如果为ture,则在没有相同name为key的sub时候添加新的sub + 如果为false,则删除所有name为key的sub + + + + + 获得int属性的项目 + + 项目名称 + 如果没找到返回的默认值 + + 如果找到项目则返回项目中储存的int值 + 如果没找到,则返回默认值 + + + + + 设置int属性的项目 + + 项目名称 + 设置项目的int值 + + + + 获得long属性的项目 + + 项目名称 + 如果没找到返回的默认值 + + 如果找到项目则返回项目中储存的long值 + 如果没找到,则返回默认值 + + + + + 设置long属性的项目 + + 项目名称 + 设置项目的long值 + + + + 获得double(long)属性的项目 通过转换long获得更精确的小数,小数位最大保留9位 + + 项目名称 + 如果没找到返回的默认值 + + 如果找到项目则返回项目中储存的double(long)值 + 如果没找到,则返回默认值 + + + + + 设置double(long)属性的项目 通过转换long获得更精确的小数,小数位最大保留9位 + + 项目名称 + 设置项目的double(long)值 + + + + 获得DateTime属性的项目 + + 项目名称 + 如果没找到返回的默认值 + + 如果找到项目则返回项目中储存的DateTime值 + 如果没找到,则返回默认值 + + + + + 设置DateTime属性的项目 + + 项目名称 + 设置项目的DateTime值 + + + + 获得double属性的项目 + + 项目名称 + 如果没找到返回的默认值 + + 如果找到项目则返回项目中储存的double值 + 如果没找到,则返回默认值 + + + + + 设置double属性的项目 + + 项目名称 + 设置项目的double值 + + + + 获取或设置 String 属性的项目 + + (gstr)项目名称 + 获取或设置对 String 属性的项目 + + + + 获取或设置 Bool 属性的项目 + + (gbol)项目名称 + 获取或设置对 bool 属性的项目 + + + + 获取或设置 Int 属性的项目 + + (gint)项目名称 + 获取或设置对 int 属性的项目 + + + + 获取或设置 Long 属性的项目 + + (gi64)项目名称 + 获取或设置对 long 属性的项目 + + + + 获取或设置 Double 属性的项目 + + (gdbe)项目名称 + 获取或设置对 double 属性的项目 + + + + 获取或设置 Double(long) 属性的项目 通过转换long获得更精确的小数,小数位最大保留9位 + + (gflt)项目名称 + 获取或设置对 double 属性的项目 + + + + 获取或设置 DateTime 属性的项目 + + (gdbe)项目名称 + 获取或设置对 double 属性的项目 + + + + 获取Key集合 + + + + + 获取Values集合(原始值) + + + + + 获取集合大小 + + + + + IDictionary + + + + + IDictionary + + + + + IDictionary + + + + + IDictionary + + + + + 是否包含指定的键 + + 键 + true为包含,false为不包含 + + + + 设置相关项目String + + 项目名称 + 设置项目的String值 + + + + 从项目列表中删除指定的键 + + 项目名称 + 是否删除成功 + + + + 设置相关项目String + + 配对(原始值) + + + + 移除所有项目 + + + + + 查看是否包含特定的配对 + + 配对(原始值) + + + + + 从引索开始复制匹配 + + 配对列表(原始值) + 引索 + + + + 移除第一个匹配的配对 + + 配对 + 是否删除成功 + + + + 获取迭代(原始值) + + 迭代器 + + + + 判断是否相等 + + 其他String + 如果相等则为0 + + + + 获取迭代(原始值) + + 迭代器 + + + + 判断是否相等 + + 其他StringStructure + 如果相等则为0 + + + + 获取相关项目String + + 项目名称 + 如果找到项目则返回值(原始值) + + + + 子类 LinePutScript最基础的类 + + + + + 创建一个子类 + + + + + 通过lpsSub文本创建一个子类 + + lpsSub文本 + + + + 加载 通过lps文本创建一个子类 + + lps文本 + + + + 通过名字和信息创建新的Sub + + 名称 + 信息 (正常版本) + + + + 通过名字和信息创建新的Sub + + 名称 + 信息 (正常版本) + + + + 通过名字和信息创建新的Sub + + 名称 + 多个信息 (正常版本) + + + + 通过Sub创建新的Sub + + 其他Sub + + + + 将其他Sub内容拷贝到本Sub + + 其他Sub + + + + 名称 没有唯一性 + + + + + ID 根据Name生成 没有唯一性 + + + + + 信息 (去除关键字的文本) + + + + + 信息 (正常) + + + + + 获得Info的String结构 + + + + + 信息 (int) + + + + + 信息 (int64) + + + + + 信息 (double) + + + + + 信息 (bool) + + + + + 返回循环访问 Info集合 的枚举数。 + + 用于 Info集合 的枚举数 + + + + 返回一个 Info集合 的第一个string。 + + 要返回的第一个string + + + + 返回一个 Info集合 的最后一个string。 + + 要返回的最后一个string + + + + 退回Info的反转义文本 (正常显示) + + info的反转义文本 (正常显示) + + + + 退回Info集合的转义文本集合 (正常显示) + + info的转义文本集合 (正常显示) + + + + 将当前Sub转换成文本格式 (info已经被转义/去除关键字) + + Sub的文本格式 (info已经被转义/去除关键字) + + + + 获得该Sub的哈希代码 + + 32位哈希代码 + + + + 获得该Sub的长哈希代码 + + 64位哈希代码 + + + + 确认对象是否等于当前对象 + + Subs + + + + + 将当前sub与另一个sub进行比较,并退回一个整数指示在排序位置中是位于另一个对象之前之后还是相同位置 + + 另一个sub + 值小于零时排在 other 之前 值等于零时出现在相同排序位置 值大于零则排在 other 之后 + + + + 克隆一个Sub + + 相同的sub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 分割字符串 + + 需要分割的文本 + 分割符号 + 分割次数 -1 为无限次数 + + + + + 将文本进行反转义处理(成为正常显示的文本) + + 要反转义的文本 + 反转义后的文本 正常显示的文本 + + + + 将文本进行转义处理(成为去除关键字的文本) + + 要转义的文本 + 转义后的文本 (去除关键字的文本) + + + + 获取String的HashCode(MD5) + + String + HashCode + + + diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Newtonsoft.Json.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Newtonsoft.Json.dll new file mode 100644 index 0000000..341d08f Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Newtonsoft.Json.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Newtonsoft.Json.xml b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Newtonsoft.Json.xml new file mode 100644 index 0000000..2c981ab --- /dev/null +++ b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Newtonsoft.Json.xml @@ -0,0 +1,11363 @@ + + + + Newtonsoft.Json + + + + + Represents a BSON Oid (object id). + + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Initializes a new instance of the class. + + The Oid value. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data. + + + + + Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The containing the BSON data to read. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the reader's state to . + If is set to true, the underlying is also closed. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data. + + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Initializes a new instance of the class. + + The to write to. + + + + Initializes a new instance of the class. + + The to write to. + + + + Flushes whatever is in the buffer to the underlying and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a JSON array. + + + + + Writes the beginning of a JSON object. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Closes this writer. + If is set to true, the underlying is also closed. + If is set to true, the JSON is auto-completed. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a parameterized constructor. + + + + + Converts a binary value to and from a base 64 string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Creates a custom object. + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a F# discriminated union type to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an Entity Framework to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from the ISO 8601 date format (e.g. "2008-04-12T12:53Z"). + + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Converts a to and from a JavaScript Date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + The default value is false. + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets the naming strategy used to resolve how enum text is written. + + The naming strategy used to resolve how enum text is written. + + + + Gets or sets a value indicating whether integer values are allowed when serializing and deserializing. + The default value is true. + + true if integers are allowed when serializing and deserializing; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + true if the written enum text will be camel case; otherwise, false. + + + + Initializes a new instance of the class. + + The naming strategy used to resolve how enum text is written. + true if integers are allowed when serializing and deserializing; otherwise, false. + + + + Initializes a new instance of the class. + + The of the used to write enum text. + + + + Initializes a new instance of the class. + + The of the used to write enum text. + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + + Initializes a new instance of the class. + + The of the used to write enum text. + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + true if integers are allowed when serializing and deserializing; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from Unix epoch time + + + + + Gets or sets a value indicating whether the dates before Unix epoch + should converted to and from JSON. + + + true to allow converting dates before Unix epoch to and from JSON; + false to throw an exception when a date being converted to or from JSON + occurred before Unix epoch. The default value is false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + true to allow converting dates before Unix epoch to and from JSON; + false to throw an exception when a date being converted to or from JSON + occurred before Unix epoch. The default value is false. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts XML to and from JSON. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements. + + The name of the deserialized root element. + + + + Gets or sets a value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attribute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Gets or sets a value indicating whether to encode special characters when converting JSON to XML. + If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify + XML namespaces, attributes or processing directives. Instead special characters are encoded and written + as part of the XML element name. + + true if special characters are encoded; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + true if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + The default JSON name table implementation. + + + + + Initializes a new instance of the class. + + + + + Gets a string containing the same characters as the specified range of characters in the given array. + + The character array containing the name to find. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + A string containing the same characters as the specified range of characters in the given array. + + + + Adds the specified string into name table. + + The string to add. + This method is not thread-safe. + The resolved string. + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that it is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and set members to their default value when deserializing. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a of property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Provides an interface for using pooled arrays. + + The array type content. + + + + Rent an array from the pool. This array must be returned when it is no longer needed. + + The minimum required length of the array. The returned array may be longer. + The rented array from the pool. This array must be returned when it is no longer needed. + + + + Return an array to the pool. + + The array that is being returned. + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if and can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, when returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, when returns false). + + + + Instructs the how to serialize the collection. + + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items. + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the how to serialize the object. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets the collection's items converter. + + The collection's items converter. + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Provides methods for converting between .NET types and JSON types. + + + + + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + The string escape handling. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output should be formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection of converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output should be formatted. + A collection of converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output should be formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output should be formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + A JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be inferred from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be inferred from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + + + Serializes the to a JSON string. + + The node to serialize. + A JSON string of the . + + + + Serializes the to a JSON string using formatting. + + The node to serialize. + Indicates how the output should be formatted. + A JSON string of the . + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output should be formatted. + Omits writing the root object. + A JSON string of the . + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by + and writes a Json.NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by , + writes a Json.NET array attribute for collections, and encodes special characters. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + + A value to indicate whether to encode special characters when converting JSON to XML. + If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify + XML namespaces, attributes or processing directives. Instead special characters are encoded and written + as part of the XML element name. + + The deserialized . + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the . + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output should be formatted. + A JSON string of the . + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output should be formatted. + Omits writing the root object. + A JSON string of the . + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by + and writes a Json.NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized . + + + + Deserializes the from a JSON string nested in a root element specified by , + writes a Json.NET array attribute for collections, and encodes special characters. + + The JSON string. + The name of the root element to append when deserializing. + + A value to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + + A value to indicate whether to encode special characters when converting JSON to XML. + If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify + XML namespaces, attributes or processing directives. Instead special characters are encoded and written + as part of the XML element name. + + The deserialized . + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Converts an object to and from JSON. + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. If there is no existing value then null will be used. + The existing value has a value. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Gets the of the . + + The of the . + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + + + + + Initializes a new instance of the class. + + Type of the . + + + + Initializes a new instance of the class. + + Type of the . + Parameter list to use when constructing the . Can be null. + + + + Represents a collection of . + + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Initializes a new instance of the class. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Base class for a table of atomized string objects. + + + + + Gets a string containing the same characters as the specified range of characters in the given array. + + The character array containing the name to find. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + A string containing the same characters as the specified range of characters in the given array. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets the missing member handling used when deserializing this object. + + The missing member handling. + + + + Gets or sets how the object's properties with null values are handled during serialization and deserialization. + + How the object's properties with null values are handled during serialization and deserialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to always serialize the member with the specified name. + + + + + Gets or sets the type used when serializing the property's collection items. + + The collection's items type. + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by . + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + + [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Asynchronously reads the next JSON token from the source. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns true if the next token was read successfully; false if there are no more tokens to read. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously skips the children of the current token. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a []. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the []. This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously reads the next JSON token from the source as a . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the . This result will be null at the end of an array. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Specifies the state of the reader. + + + + + A read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader is in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the source should be closed when this reader is closed. + + + true to close the source when this reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. + The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Gets or sets how time zones are handled when reading JSON. + + + + + Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Gets or sets how custom date formatted strings are parsed when reading JSON. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + A null value means there is no maximum. + The default value is 64. + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets the .NET type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Initializes a new instance of the class. + + + + + Reads the next JSON token from the source. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a []. + + A [] or null if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the source as a of . + + A of . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the current token and value. + + The new token. + The value. + A flag indicating whether the position index inside an array should be updated. + + + + Sets the state based on current token type. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the reader's state to . + If is set to true, the source is also closed. + + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class + with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The path to the JSON where the error occurred. + The line number indicating where the error occurred. + The line position indicating where the error occurred. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Instructs the to always serialize the member, and to require that the member has a value. + + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class + with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The path to the JSON where the error occurred. + The line number indicating where the error occurred. + The line position indicating where the error occurred. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + The default value is . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than . + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + The default value is . + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + The default value is . + + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + The default value is . + + + + + Gets or sets how null values are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how default values are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how objects are created during deserialization. + The default value is . + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + The default value is . + + The constructor handling. + + + + Gets or sets how metadata properties are used during deserialization. + The default value is . + + The metadata properties handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + The default value is . + + + + + Gets or sets how dates are written to JSON text. + The default value is . + + + + + Gets or sets how time zones are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + The default value is . + + + + + Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + The default value is . + + + + + Gets or sets how special floating point numbers, e.g. , + and , + are written as JSON text. + The default value is . + + + + + Gets or sets how strings are escaped when writing JSON text. + The default value is . + + + + + Gets or sets how and values are formatted when writing JSON text, + and the expected date format when reading JSON text. + The default value is "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK". + + + + + Gets or sets the culture used when reading JSON. + The default value is . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + A null value means there is no maximum. + The default value is 64. + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + The default value is false. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings + from . + + + A new instance. + The will not use default settings + from . + + + + + Creates a new instance using the specified . + The will not use default settings + from . + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings + from . + + + + + Creates a new instance. + The will use default settings + from . + + + A new instance. + The will use default settings + from . + + + + + Creates a new instance using the specified . + The will use default settings + from as well as the specified . + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings + from as well as the specified . + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to read values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to read values from. + The target object to populate values onto. + + + + Deserializes the JSON structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifying the type is optional. + + + + + Serializes the specified and writes the JSON structure + using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Specifies the settings on a object. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) are handled. + The default value is . + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + The default value is . + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + The default value is . + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + The default value is . + + Null value handling. + + + + Gets or sets how default values are handled during serialization and deserialization. + The default value is . + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + The default value is . + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + The default value is . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than . + + The type name handling. + + + + Gets or sets how metadata properties are used during deserialization. + The default value is . + + The metadata properties handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + The default value is . + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + The default value is . + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets a function that creates the used by the serializer when resolving references. + + A function that creates the used by the serializer when resolving references. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Gets or sets how and values are formatted when writing JSON text, + and the expected date format when reading JSON text. + The default value is "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK". + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + A null value means there is no maximum. + The default value is 64. + + + + + Indicates how JSON text output is formatted. + The default value is . + + + + + Gets or sets how dates are written to JSON text. + The default value is . + + + + + Gets or sets how time zones are handled during serialization and deserialization. + The default value is . + + + + + Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + The default value is . + + + + + Gets or sets how special floating point numbers, e.g. , + and , + are written as JSON. + The default value is . + + + + + Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + The default value is . + + + + + Gets or sets how strings are escaped when writing JSON text. + The default value is . + + + + + Gets or sets the culture used when reading JSON. + The default value is . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + The default value is false. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + using values copied from the passed in . + + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Asynchronously reads the next JSON token from the source. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns true if the next token was read successfully; false if there are no more tokens to read. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a []. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the []. This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a of . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the of . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously reads the next JSON token from the source as a . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous read. The + property returns the . This result will be null at the end of an array. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Initializes a new instance of the class with the specified . + + The containing the JSON data to read. + + + + Gets or sets the reader's property name table. + + + + + Gets or sets the reader's character buffer pool. + + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a []. + + A [] or null if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Changes the reader's state to . + If is set to true, the underlying is also closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if and can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, returns false). + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the JSON value delimiter. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the specified end token. + + The end token to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously closes this writer. + If is set to true, the destination is also closed. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of the current JSON object or array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes indent characters. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes an indent space. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes raw JSON without changing the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a null value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the beginning of a JSON array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the beginning of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the start of a constructor with the given name. + + The name of the constructor. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes an undefined value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the given white space. + + The string of white space characters. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a [] value. + + The [] value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of an array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of a constructor. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes the end of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Asynchronously writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + Derived classes must override this method to get asynchronous behaviour. Otherwise it will + execute synchronously, returning an already-completed task. + + + + Gets or sets the writer's character array pool. + + + + + Gets or sets how many s to write for each level in the hierarchy when is set to . + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to . + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Initializes a new instance of the class using the specified . + + The to write to. + + + + Flushes whatever is in the buffer to the underlying and also flushes the underlying . + + + + + Closes this writer. + If is set to true, the underlying is also closed. + If is set to true, the JSON is auto-completed. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a value. + + The value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the given white space. + + The string of white space characters. + + + + Specifies the type of JSON token. + + + + + This is returned by the if a read method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + + Represents a reader that provides validation. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current JSON token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current JSON token. + + + + + + Gets the .NET type for the current JSON token. + + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Changes the reader's state to . + If is set to true, the underlying is also closed. + + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a []. + + + A [] or null if the next JSON token is null. + + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . This method will return null at the end of an array. + + + + Reads the next JSON token from the underlying as a of . + + A of . + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Asynchronously closes this writer. + If is set to true, the destination is also closed. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the specified end token. + + The end token to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes indent characters. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the JSON value delimiter. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes an indent space. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes raw JSON without changing the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of the current JSON object or array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of an array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of a constructor. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the end of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a null value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the property name of a name/value pair of a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the beginning of a JSON array. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the start of a constructor with the given name. + + The name of the constructor. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the beginning of a JSON object. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the current token. + + The to read the token from. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the token and its value. + + The to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + null can be passed to the method for tokens that don't have a value, e.g. . + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a [] value. + + The [] value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a value. + + The value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes a of value. + + The of value to write. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes an undefined value. + + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously writes the given white space. + + The string of white space characters. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Asynchronously ets the state of the . + + The being written. + The value being written. + The token to monitor for cancellation requests. The default value is . + A that represents the asynchronous operation. + The default behaviour is to execute synchronously, returning an already-completed task. Derived + classes can override this behaviour for true asynchronicity. + + + + Gets or sets a value indicating whether the destination should be closed when this writer is closed. + + + true to close the destination when this writer is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed. + + + true to auto-complete the JSON when this writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Gets or sets a value indicating how JSON text output should be formatted. + + + + + Gets or sets how dates are written to JSON text. + + + + + Gets or sets how time zones are handled when writing JSON text. + + + + + Gets or sets how strings are escaped when writing JSON text. + + + + + Gets or sets how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Gets or sets how and values are formatted when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the destination and also flushes the destination. + + + + + Closes this writer. + If is set to true, the destination is also closed. + If is set to true, the JSON is auto-completed. + + + + + Writes the beginning of a JSON object. + + + + + Writes the end of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair of a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair of a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current JSON object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + null can be passed to the method for tokens that don't have a value, e.g. . + + + + + Writes the token. + + The to write. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a of value. + + The of value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the given white space. + + The string of white space characters. + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Sets the state of the . + + The being written. + The value being written. + + + + The exception thrown when an error occurs while writing JSON text. + + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class + with a specified error message, JSON path and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The path to the JSON where the error occurred. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Specifies how JSON comments are handled when loading JSON. + + + + + Ignore comments. + + + + + Load comments as a with type . + + + + + Specifies how duplicate property names are handled when loading JSON. + + + + + Replace the existing value when there is a duplicate property. The value of the last property in the JSON object will be used. + + + + + Ignore the new value when there is a duplicate property. The value of the first property in the JSON object will be used. + + + + + Throw a when a duplicate property is encountered. + + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every token in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every token in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every token in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every token in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a collection of objects. + + The type of token. + + + + Gets the of with the specified key. + + + + + + Represents a JSON array. + + + + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous load. The property contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous load. The property contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object. + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + + + + Returns an enumerator that iterates through the collection. + + + A of that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + + + + Removes all items from the . + + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies the elements of the to an array, starting at a particular array index. + + The array. + Index of the array. + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + + + + Represents a JSON constructor. + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Loads a from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a token that can contain other tokens. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An of containing the descendant tokens of the . + + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An of containing this token, and all the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates a that can be used to add tokens to the . + + A that is ready to have content written to it. + + + + Replaces the child nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Merge the specified content into this . + + The content to be merged. + + + + Merge the specified content into this using . + + The content to be merged. + The used to merge the content. + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens. + + + + Represents a collection of objects. + + The type of token. + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that can be used to iterate through the collection. + + + A that can be used to iterate through the collection. + + + + + Gets the of with the specified key. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Represents a JSON object. + + + + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous load. The + property returns a that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets the node type for this . + + The type. + + + + Gets an of of this object's properties. + + An of of this object's properties. + + + + Gets a with the specified name. + + The property name. + A with the specified name or null. + + + + Gets the with the specified name. + The exact name will be searched for first and if no matching property is found then + the will be used to match a property. + + The property name. + One of the enumeration values that specifies how the strings will be compared. + A matched with the specified name or null. + + + + Gets a of of this object's property values. + + A of of this object's property values. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Loads a from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + is not valid JSON. + + + + + Loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + is not valid JSON. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + is not valid JSON. + + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + is not valid JSON. + + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object. + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Determines whether the JSON object has the specified property name. + + Name of the property. + true if the JSON object has the specified property name; otherwise, false. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries to get the with the specified property name. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that can be used to iterate through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Represents a JSON property. + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous creation. The + property returns a that contains the JSON that was read from the specified . + + + + Asynchronously loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous creation. The + property returns a that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads a from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads a from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. + When the or + + methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Represents a raw JSON string. + + + + + Asynchronously creates an instance of with the content of the reader's current token. + + The reader. + The token to monitor for cancellation requests. The default value is . + A representing the asynchronous creation. The + property returns an instance of with the content of the reader's current token. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Specifies the settings used when cloning JSON. + + + + + Initializes a new instance of the class. + + + + + Gets or sets a flag that indicates whether to copy annotations when cloning a . + The default value is true. + + + A flag that indicates whether to copy annotations when cloning a . + + + + + Specifies the settings used when loading JSON. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how JSON comments are handled when loading JSON. + The default value is . + + The JSON comment handling. + + + + Gets or sets how JSON line info is handled when loading JSON. + The default value is . + + The JSON line info handling. + + + + Gets or sets how duplicate property names in JSON objects are handled when loading JSON. + The default value is . + + The JSON duplicate property name handling. + + + + Specifies the settings used when merging JSON. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the method used when merging JSON arrays. + + The method used when merging JSON arrays. + + + + Gets or sets how null value properties are merged. + + How null value properties are merged. + + + + Gets or sets the comparison used to match property names while merging. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + The comparison used to match property names while merging. + + + + Specifies the settings used when selecting JSON. + + + + + Gets or sets a timeout that will be used when executing regular expressions. + + The timeout that will be used when executing regular expressions. + + + + Gets or sets a flag that indicates whether an error should be thrown if + no tokens are found when evaluating part of the expression. + + + A flag that indicates whether an error should be thrown if + no tokens are found when evaluating part of the expression. + + + + + Represents an abstract JSON token. + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Writes this token to a asynchronously. + + A into which this method will write. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Asynchronously creates a from a . + + An positioned at the token to read into this . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a 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. + + + + + Asynchronously creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a 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. + + + + + Asynchronously creates a from a . + + A positioned at the token to read into this . + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a 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. + + + + + Asynchronously creates a from a . + + A positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + The token to monitor for cancellation requests. The default value is . + + A that represents the asynchronous creation. The + property returns a 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. + + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + ToString() returns a non-JSON string value for tokens with a type of . + If you want the JSON for all token types then you should use . + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output should be formatted. + A collection of s which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to []. + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to of . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from [] to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from of to . + + The value to create a from. + The initialized with the specified value. + + + + Creates a for this token. + + A that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object. + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object. + + + + Creates an instance of the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates an instance of the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates an instance of the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates an instance of the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + A positioned at the token to read into this . + + A 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. + + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + A that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + Creates a from a . + + A positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + A 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. + + + + + Creates a from a . + + A positioned at the token to read into this . + + A that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JSONPath expression. Selects the token that matches the object path. + + + A that contains a JSONPath expression. + + A , or null. + + + + Selects a using a JSONPath expression. Selects the token that matches the object path. + + + A that contains a JSONPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a using a JSONPath expression. Selects the token that matches the object path. + + + A that contains a JSONPath expression. + + The used to select tokens. + A . + + + + Selects a collection of elements using a JSONPath expression. + + + A that contains a JSONPath expression. + + An of that contains the selected elements. + + + + Selects a collection of elements using a JSONPath expression. + + + A that contains a JSONPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An of that contains the selected elements. + + + + Selects a collection of elements using a JSONPath expression. + + + A that contains a JSONPath expression. + + The used to select tokens. + An of that contains the selected elements. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A object to configure cloning settings. + A new instance of the . + + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets the at the reader's current position. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Initializes a new instance of the class. + + The token to read from. + The initial path of the token. It is prepended to the returned . + + + + Reads the next JSON token from the underlying . + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the path of the current JSON token. + + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets the at the writer's current position. + + + + + Gets the token being written. + + The token being written. + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying . + + + + + Closes this writer. + If is set to true, the JSON is auto-completed. + + + Setting to true has no additional effect, since the underlying is a type that cannot be closed. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes a value. + An error will be raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Writes this token to a asynchronously. + + A into which this method will write. + The token to monitor for cancellation requests. + A collection of which will be used when writing the token. + A that represents the asynchronous write operation. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Creates a null value. + + A null value. + + + + Creates a undefined value. + + A undefined value. + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Writes this token to a . + + A into which this method will write. + A collection of s which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + ToString() returns a non-JSON string value for tokens with a type of . + If you want the JSON for all token types then you should use . + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not of the same type as this instance. + + + + + Specifies how line information is handled when loading JSON. + + + + + Ignore line information. + + + + + Load line information. + + + + + Specifies how JSON arrays are merged together. + + + + Concatenate arrays. + + + Union arrays, skipping items that already exist. + + + Replace all array items. + + + Merge array items together, matched by index. + + + + Specifies how null value properties are merged. + + + + + The content's null value properties will be ignored during merging. + + + + + The content's null value properties will be merged. + + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies metadata property handling options for the . + + + + + Read metadata properties located at the start of a JSON object. + + + + + Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. + + + + + Do not try to read metadata properties. + + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement . + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + The property is not required but it cannot be a null value. + + + + + + Contains the JSON schema extension methods. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + When this method returns, contains any error messages generated while validating. + + true if the specified is valid; otherwise, false. + + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + The validation event handler. + + + + + An in-memory representation of a JSON Schema. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read-only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisible by. + + A number that the value should be divisible by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the minimum attribute (). + + A flag indicating whether the value can not equal the number defined by the minimum attribute (). + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the maximum attribute (). + + A flag indicating whether the value can not equal the number defined by the maximum attribute (). + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . + + + true if items are validated using their array position; otherwise, false. + + + + + Gets or sets the of additional items. + + The of additional items. + + + + Gets or sets a value indicating whether additional items are allowed. + + + true if additional items are allowed; otherwise, false. + + + + + Gets or sets whether the array items must be unique. + + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets disallowed types. + + The disallowed types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the collection of that this schema extends. + + The collection of that this schema extends. + + + + Gets or sets the format. + + The format. + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains JSON Schema. + + A that contains JSON Schema. + A populated from the string that contains JSON Schema. + + + + Load a from a string that contains JSON Schema using the specified . + + A that contains JSON Schema. + The resolver. + A populated from the string that contains JSON Schema. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + + Returns detailed information about the schema exception. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or null if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + + Generates a from a specified . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + + Resolves from an id. + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Initializes a new instance of the class. + + + + + Gets a for the specified reference. + + The id. + A for the specified reference. + + + + + The value types allowed by the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + + Specifies undefined schema Id handling options for the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + + Returns detailed information related to the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the associated with the validation error. + + The JsonSchemaException associated with the validation error. + + + + Gets the path of the JSON location where the validation error occurred. + + The path of the JSON location where the validation error occurred. + + + + Gets the text description corresponding to the validation error. + + The text description. + + + + + Represents the callback method that will handle JSON schema validation events and the . + + + JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details. + + + + + + A camel case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + A flag indicating whether extension data names should be processed. + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Used by to resolve a for a given . + + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. + + + true if the interface will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. + + + true if the attribute will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore IsSpecified members when serializing and deserializing types. + + + true if the IsSpecified members will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore ShouldSerialize members when serializing and deserializing types. + + + true if the ShouldSerialize members will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized. + + The naming strategy used to resolve how property names and dictionary keys are serialized. + + + + Initializes a new instance of the class. + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Resolved name of the property. + + + + Resolves the name of the extension data. By default no changes are made to extension data names. + + Name of the extension data. + Resolved name of the extension data. + + + + Resolves the key of the dictionary. By default is used to resolve dictionary keys. + + Key of the dictionary. + Resolved key of the dictionary. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + The default naming strategy. Property names and dictionary keys are unchanged. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + Initializes a new instance of the class. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Represents a trace writer that writes to the application's instances. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of will exclude messages and include , + and messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Provides data for the Error event. + + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Used by to resolve a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that was resolved from the reference. + + + + Gets the reference for the specified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Allows users to control class loading and mandate what class to load. + + + + + When implemented, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object + The type of the object the formatter creates a new instance of. + + + + When implemented, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Represents a trace writer. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of will exclude messages and include , + and messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + true if the collection type is a multidimensional array; otherwise, false. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the collection values. + + true if the creator has a parameter with the collection values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets the internally resolved for the contract's type. + This converter is used as a fallback converter when no other converter is resolved. + Setting will always override this converter. + + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non-public. + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Gets or sets the dictionary key resolver. + + The dictionary key resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the dictionary values. + + true if the creator has a parameter with the dictionary values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the object constructor. + + The object constructor. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets the missing member handling used when deserializing this object. + + The missing member handling. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets or sets how the object's properties with null values are handled during serialization and deserialization. + + How the object's properties with null values are handled during serialization and deserialization. + + + + Gets the object's properties. + + The object's properties. + + + + Gets a collection of instances that define the parameters used with . + + + + + Gets or sets the function used to create the object. When set this function will override . + This function is called with a collection of arguments which are defined by the collection. + + The function used to create the object. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Gets or sets the extension data value type. + + + + + Gets or sets the extension data name resolver. + + The extension data name resolver. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the for this property. + + The for this property. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes precedence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets a value indicating whether has a value specified. + + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets a predicate used to determine whether the property should be deserialized. + + A predicate used to determine whether the property should be deserialized. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Lookup and create an instance of the type described by the argument. + + The type to create. + Optional arguments to pass to an initializing constructor of the JsonConverter. + If null, the default constructor is used. + + + + A kebab case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + A flag indicating whether extension data names should be processed. + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of will exclude messages and include , + and messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + A base class for resolving how property names and dictionary keys are serialized. + + + + + A flag indicating whether dictionary keys should be processed. + Defaults to false. + + + + + A flag indicating whether extension data names should be processed. + Defaults to false. + + + + + A flag indicating whether explicitly specified property names, + e.g. a property name customized with a , should be processed. + Defaults to false. + + + + + Gets the serialized name for a given property name. + + The initial property name. + A flag indicating whether the property has had a name explicitly specified. + The serialized property name. + + + + Gets the serialized name for a given extension data name. + + The initial extension data name. + The serialized extension data name. + + + + Gets the serialized key for a given dictionary key. + + The initial dictionary key. + The serialized dictionary key. + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Hash code calculation + + + + + + Object equality implementation + + + + + + + Compare to another NamingStrategy + + + + + + + Represents a method that constructs an object. + + The object type to create. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + The instance to get attributes for. This parameter should be a , , or . + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + A snake case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + A flag indicating whether extension data names should be processed. + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Indicates the method that will be used during deserialization for locating and loading assemblies. + + + + + In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method of the class is used to load the assembly. + + + + + In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the class is used to load the assembly. + + + + + Specifies type name handling options for the . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + Note that this doesn't include the root serialized object by default. To include the root object's type name in JSON + you must specify a root type object with + or . + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic . + + The list to add to. + The collection of elements to add. + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + + + + Helper class for serializing immutable collections. + Note that this is used by all builds, even those that don't support immutable collections, in case the DLL is GACed + https://github.com/JamesNK/Newtonsoft.Json/issues/652 + + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Builds a string. Unlike this class lets you reuse its internal buffer. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls result in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + An array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + Specifies that an output will not be null even if the corresponding type allows it. + + + Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it. + + + Initializes the attribute with the specified return value condition. + + The return value condition. If the method returns this value, the associated parameter will not be null. + + + + Gets the return value condition. + + + Specifies that an output may be null even if the corresponding type disallows it. + + + Specifies that null is allowed as an input even if the corresponding type disallows it. + + + + Specifies that the method will not return if the associated Boolean parameter is passed the specified value. + + + + + Initializes a new instance of the class. + + + The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to + the associated parameter matches this value. + + + + Gets the condition parameter value. + + + diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Panuon.WPF.UI.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Panuon.WPF.UI.dll new file mode 100644 index 0000000..fee5279 Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Panuon.WPF.UI.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Panuon.WPF.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Panuon.WPF.dll new file mode 100644 index 0000000..f4b35f0 Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Panuon.WPF.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Serilog.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Serilog.dll new file mode 100644 index 0000000..98a698b Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Serilog.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Serilog.xml b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Serilog.xml new file mode 100644 index 0000000..d2e5a75 --- /dev/null +++ b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/Serilog.xml @@ -0,0 +1,4781 @@ + + + + Serilog + + + + + Create properties based on an ordered list of provided values. + + The template that the parameters apply to. + Objects corresponding to the properties + represented in the message template. + A list of properties; if the template is malformed then + this will be empty. + + + + Implemented on types that apply settings to a logger configuration. + + + + + Apply the settings to the logger configuration. + + The logger configuration to apply settings to. + + + + Controls audit sink configuration. + + + + + Audit log events to the specified . + + The sink. + The minimum level for + events passed through the sink. Ignored when is specified. + A switch allowing the pass-through minimum level + to be changed at runtime. + Configuration object allowing method chaining. + + + + Audit log events to the specified . + + The sink. + The minimum level for + events passed through the sink. Ignored when is specified. + A switch allowing the pass-through minimum level + to be changed at runtime. + Configuration object allowing method chaining. + + + + Audit log events to a sub-logger, where further processing may occur. Events through + the sub-logger will be constrained by filters and enriched by enrichers that are + active in the parent. A sub-logger cannot be used to log at a more verbose level, but + a less verbose level is possible. + + An action that configures the sub-logger. + The minimum level for + events passed through the sink. Ignored when is specified. + A switch allowing the pass-through minimum level + to be changed at runtime. + Configuration object allowing method chaining. + + + + Audit log events to a sub-logger, where further processing may occur. Events through + the sub-logger will be constrained by filters and enriched by enrichers that are + active in the parent. A sub-logger cannot be used to log at a more verbose level, but + a less verbose level is possible. + + The sub-logger. This will not be shut down automatically when the + parent logger is disposed. + The minimum level for + events passed through the sink. + Configuration object allowing method chaining. + + + + Controls template parameter destructuring configuration. + + + + + Treat objects of the specified type as scalar values, i.e., don't break + them down into properties even when destructuring complex types. + + Type to treat as scalar. + Configuration object allowing method chaining. + When is null + + + + Treat objects of the specified type as scalar values, i.e., don't break + them down into properties even when destructuring complex types. + + Type to treat as scalar. + Configuration object allowing method chaining. + + + + When destructuring objects, transform instances with the provided policies. + + Policies to apply when destructuring. + Configuration object allowing method chaining. + When is null + When any element of is null + + + + When destructuring objects, transform instances with the provided policy. + + Policy to apply when destructuring. + Configuration object allowing method chaining. + + + + When destructuring objects, transform instances of the specified type with + the provided function. + + Function mapping instances of + to an alternative representation. + Type of values to transform. + Configuration object allowing method chaining. + When is null + + + + When destructuring objects, transform instances of the specified type with + the provided function, if the predicate returns true. Be careful to avoid any + intensive work in the predicate, as it can slow down the pipeline significantly. + + A predicate used to determine if the transform applies to + a specific type of value + Function mapping instances of + to an alternative representation. + Type of values to transform. + Configuration object allowing method chaining. + When is null + When is null + + + + When destructuring objects, depth will be limited to 10 property traversals deep to + guard against ballooning space when recursive/cyclic structures are accidentally passed. To + change this limit pass a new maximum depth. + + The maximum depth to use. + Configuration object allowing method chaining. + When is negative + + + + When destructuring objects, string values can be restricted to specified length + thus avoiding bloating payload. Limit is applied to each value separately, + sum of length of strings can exceed limit. + + The maximum string length. + Configuration object allowing method chaining. + When is less than 2 + + + + When destructuring objects, collections be restricted to specified count + thus avoiding bloating payload. Limit is applied to each collection separately, + sum of length of collection can exceed limit. + Applies limit to all including dictionaries. + + Configuration object allowing method chaining. + When is less than 1 + + + + Controls enrichment configuration. + + + + + Specifies one or more enrichers that may add properties dynamically to + log events. + + Enrichers to apply to all events passing through + the logger. + Configuration object allowing method chaining. + When is null + When any element of is null + + + + Specifies an enricher that may add properties dynamically to + log events. + + Enricher type to apply to all events passing through + the logger. + Configuration object allowing method chaining. + + + + Include the specified property value in all events logged to the logger. + + The name of the property to add. + The property value to add. + If true, objects of unknown type will be logged as structures; otherwise they will be converted using . + Configuration object allowing method chaining. + + + + Enrich log events with properties from . + + Configuration object allowing method chaining. + + Configuration object allowing method chaining. + + + + Apply an enricher only when evaluates to true. + + A predicate that evaluates to true when the supplied + should be enriched. + An action that configures the wrapped enricher. + Configuration object allowing method chaining. + When is null + When is null + + + + Apply an enricher only to events with a greater than or equal to . + + The level from which the enricher will be applied. + An action that configures the wrapped enricher. + Configuration object allowing method chaining. + This method permits additional information to be attached to e.g. warnings and errors, that might be too expensive + to collect or store at lower levels. + When is null + + + + Apply an enricher only to events with a greater than or equal to the level specified by . + + A that specifies the level from which the enricher will be applied. + An action that configures the wrapped enricher. + Configuration object allowing method chaining. + This method permits additional information to be attached to e.g. warnings and errors, that might be too expensive + to collect or store at lower levels. + When is null + + + + Helper method for wrapping sinks. + + The parent enrichment configuration. + A function that allows for wrapping s + added in . + An action that configures enrichers to be wrapped in . + Configuration object allowing method chaining. + When is null + When is null + When is null + + + + Controls filter configuration. + + + + + Filter out log events from the stream based on the provided filter. + + The filters to apply. + Configuration object allowing method chaining. + When is null + When any element of is null + + + + Filter out log events from the stream based on the provided filter. + + The filters to apply. + Configuration object allowing method chaining. + + + + Filter out log events that match a predicate. + + Function that returns true when an event + should be excluded (silenced). + Configuration object allowing method chaining. + + + + Filter log events to include only those that match a predicate. + + Function that returns true when an event + should be included (emitted). + Configuration object allowing method chaining. + + + + Controls sink configuration. + + + + + Sets the minimum level at which events will be passed to sinks. + + The minimum level to set. + Configuration object allowing method chaining. + + + + Sets the minimum level to be dynamically controlled by the provided switch. + + The switch. + Configuration object allowing method chaining. + When is null + + + + Anything and everything you might want to know about + a running block of code. + + Configuration object allowing method chaining. + + + + Internal system events that aren't necessarily + observable from the outside. + + Configuration object allowing method chaining. + + + + The lifeblood of operational intelligence - things + happen. + + Configuration object allowing method chaining. + + + + Service is degraded or endangered. + + Configuration object allowing method chaining. + + + + Functionality is unavailable, invariants are broken + or data is lost. + + Configuration object allowing method chaining. + + + + If you have a pager, it goes off when one of these + occurs. + + Configuration object allowing method chaining. + + + + Override the minimum level for events from a specific namespace or type name. + This API is not supported for configuring sub-loggers (created through ). Use or instead. + You also might consider using https://github.com/serilog/serilog-filters-expressions. + + The (partial) namespace or type name to set the override for. + The switch controlling loggers for matching sources. + Configuration object allowing method chaining. + When is null + When a trimmed is empty + When is null + + + + Override the minimum level for events from a specific namespace or type name. + This API is not supported for configuring sub-loggers (created through ). Use or instead. + You also might consider using https://github.com/serilog/serilog-filters-expressions. + + The (partial) namespace or type name to set the override for. + The minimum level applied to loggers for matching sources. + Configuration object allowing method chaining. + When is null + + + + Allows additional setting sources to drive the logger configuration. + + + + + Apply external settings to the logger configuration. + + Configuration object allowing method chaining. + When is null + + + + Apply settings specified in the Serilog key-value setting format to the logger configuration. + + A list of key-value pairs describing logger settings. + Configuration object allowing method chaining. + In case of duplicate keys, the last value for the key is kept and the previous ones are ignored. + When is null + + + + Controls sink configuration. + + + + + Write log events to the specified . + + The sink. + The minimum level for + events passed through the sink. + Configuration object allowing method chaining. + Provided for binary compatibility for earlier versions, + should be removed in 3.0. Not marked obsolete because warnings + would be syntactically annoying to avoid. + + + + Write log events to the specified . + + The sink. + The minimum level for + events passed through the sink. Ignored when is specified. + A switch allowing the pass-through minimum level + to be changed at runtime. + Configuration object allowing method chaining. + + + + Write log events to the specified . + + The sink. + The minimum level for + events passed through the sink. Ignored when is specified. + A switch allowing the pass-through minimum level + to be changed at runtime. + Configuration object allowing method chaining. + + + + Write log events to a sub-logger, where further processing may occur. Events through + the sub-logger will be constrained by filters and enriched by enrichers that are + active in the parent. A sub-logger cannot be used to log at a more verbose level, but + a less verbose level is possible. + + An action that configures the sub-logger. + The minimum level for + events passed through the sink. Ignored when is specified. + A switch allowing the pass-through minimum level + to be changed at runtime. Can be null + Configuration object allowing method chaining. + When is null + + + + Write log events to a sub-logger, where further processing may occur. Events through + the sub-logger will be constrained by filters and enriched by enrichers that are + active in the parent. A sub-logger cannot be used to log at a more verbose level, but + a less verbose level is possible. + + The sub-logger. This will not be shut down automatically when the + parent logger is disposed. + The minimum level for + events passed through the sink. + Configuration object allowing method chaining. + When is null + + + + Write to a sink only when evaluates to true. + + A predicate that evaluates to true when the supplied + should be written to the configured sink. + An action that configures the wrapped sink. + Configuration object allowing method chaining. + When is null + When is null + + + + Helper method for wrapping sinks. + + The parent sink configuration. + A function that allows for wrapping s + added in . + An action that configures sinks to be wrapped in . + Configuration object allowing method chaining. + + + + Helper method for wrapping sinks. + + The parent sink configuration. + A function that allows for wrapping s + added in . + An action that configures sinks to be wrapped in . + The minimum level for + events passed through the sink. Ignored when is specified. + A switch allowing the pass-through minimum level + to be changed at runtime. Can be null + Configuration object allowing method chaining. + When is null + When is null + When is null + + + + Holds ambient properties that can be attached to log events. To + configure, use the method. + + + Configuration: + + var log = new LoggerConfiguration() + .Enrich.FromLogContext() + ... + + Usage: + + using (LogContext.PushProperty("MessageId", message.Id)) + { + Log.Information("The MessageId property will be attached to this event"); + } + + + The scope of the context is the current logical thread, using AsyncLocal + (and so is preserved across async/await calls). + + + + Push a property onto the context, returning an + that must later be used to remove the property, along with any others that + may have been pushed on top of it and not yet popped. The property must + be popped from the same thread/logical call context. + + The name of the property. + The value of the property. + A handle to later remove the property from the context. + If true, and the value is a non-primitive, non-array type, + then the value will be converted to a structure; otherwise, unknown types will + be converted to scalars, which are generally stored as strings. + A token that must be disposed, in order, to pop properties back off the stack. + + + + Push an enricher onto the context, returning an + that must later be used to remove the property, along with any others that + may have been pushed on top of it and not yet popped. The property must + be popped from the same thread/logical call context. + + An enricher to push onto the log context + A token that must be disposed, in order, to pop properties back off the stack. + When is null + + + + Push multiple enrichers onto the context, returning an + that must later be used to remove the property, along with any others that + may have been pushed on top of it and not yet popped. The property must + be popped from the same thread/logical call context. + + . + Enrichers to push onto the log context + A token that must be disposed, in order, to pop properties back off the stack. + When is null + + + + Push enrichers onto the log context. This method is obsolete, please + use instead. + + Enrichers to push onto the log context + A token that must be disposed, in order, to pop properties back off the stack. + + + + + Obtain an enricher that represents the current contents of the . This + can be pushed back onto the context in a different location/thread when required. + + An enricher that represents the current contents of the . + + + + Remove all enrichers from the , returning an + that must later be used to restore enrichers that were on the stack before was called. + + A token that must be disposed, in order, to restore properties back to the stack. + + + + Remove all enrichers from for the current async scope. + + + + + Constants used in the core logging pipeline and associated types. + + + + + The name of the property included in the emitted log events + when ForContext<T>() and overloads are + applied. + + + + + Adds a new property enricher to the log event. + + + + + Create a new property enricher. + + The name of the property. + The value of the property. + If true, and the value is a non-primitive, non-array type, + then the value will be converted to a structure; otherwise, unknown types will + be converted to scalars, which are generally stored as strings. + When is null + When is empty or only contains whitespace + + + + Enrich the log event. + + The log event to enrich. + Factory for creating new properties to add to the event. + When is null + When is null + + + + Determine how, when destructuring, a supplied value is represented + as a complex log event property. + + + + + If supported, destructure the provided value. + + The value to destructure. + Recursively apply policies to destructure additional values. + The destructured value, or null. + True if the value could be destructured under this policy. + + + + Applied during logging to add additional information to log events. + + + + + Enrich the log event. + + The log event to enrich. + Factory for creating new properties to add to the event. + + + + Provides filtering of the log event stream. + + + + + Returns true if the provided event is enabled. Otherwise, false. + + The event to test. + True if the event is enabled by this filter. If false + is returned, the event will not be emitted. + + + + Creates log event properties from regular .NET objects, applying policies as + required. + + + + + Construct a with the specified name and value. + + The name of the property. + The value of the property. + If true, and the value is a non-primitive, non-array type, + then the value will be converted to a structure; otherwise, unknown types will + be converted to scalars, which are generally stored as strings. + Created instance. + + + + Supports the policy-driven construction of s given + regular .NET objects. + + + + + Create a given a .NET object and destructuring + strategy. + + The value of the property. + If true, and the value is a non-primitive, non-array type, + then the value will be converted to a structure; otherwise, unknown types will + be converted to scalars, which are generally stored as strings. + The value. + + + + A destination for log events. + + + + + Emit the provided log event to the sink. + + The log event to write. + + + + Determine how a simple value is carried through the logging + pipeline as an immutable . + + + + + If supported, convert the provided value into an immutable scalar. + + The value to convert. + The converted value, or null. + True if the value could be converted under this policy. + + + + The core Serilog logging pipeline. A must + be disposed to flush any events buffered within it. Most application + code should depend on , not this class. + + + + + Create a logger that enriches log events via the provided enrichers. + + Enricher that applies in the context. + A logger that will enrich log events as specified. + + + + Create a logger that enriches log events via the provided enrichers. + + Enrichers that apply in the context. + A logger that will enrich log events as specified. + + + + Create a logger that enriches log events with the specified property. + + The name of the property. Must be non-empty. + The property value. + If true, the value will be serialized as a structured + object if possible; if false, the object will be recorded as a scalar or simple array. + A logger that will enrich log events as specified. + + + + Create a logger that marks log events as being from the specified + source type. + + Type generating log messages in the context. + A logger that will enrich log events as specified. + + + + Create a logger that marks log events as being from the specified + source type. + + Type generating log messages in the context. + A logger that will enrich log events as specified. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + + + + + + Determine if events at the specified level, and higher, will be passed through + to the log sinks. + + Level to check. + True if the level is enabled; otherwise, false. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + + + Write an event to the log. + + The event to write. + + + + Write a log event with the level. + + Message template describing the event. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Uses configured scalar conversion and destructuring rules to bind a set of properties to a + message template. Returns false if the template or values are invalid (ILogger + methods never throw exceptions). + + Message template describing an event. + Objects positionally formatted into the message template. + The internal representation of the template, which may be used to + render the as text. + Captured properties from the template and . + + MessageTemplate template; + IEnumerable<LogEventProperty> properties>; + if (Log.BindMessageTemplate("Hello, {Name}!", new[] { "World" }, out template, out properties) + { + var propsByName = properties.ToDictionary(p => p.Name, p => p.Value); + Console.WriteLine(template.Render(propsByName, null)); + // -> "Hello, World!" + } + + + + + Uses configured scalar conversion and destructuring rules to bind a property value to its captured + representation. + + The name of the property. Must be non-empty. + The property value. + If true, the value will be serialized as a structured + object if possible; if false, the object will be recorded as a scalar or simple array. + The resulting property. + True if the property could be bound, otherwise false (ILogger + methods never throw exceptions). + + + + Close and flush the logging pipeline. + + + + + An instance that efficiently ignores all method calls. + + + + + Dynamically controls logging level. + + + + + Create a at the initial + minimum level. + + The initial level to which the switch is set. + + + + The current minimum level, below which no events + should be generated. + + + + + Indicates that the marked method logs data using a message template and (optional) arguments. + The name of the parameter which contains the message template should be given in the constructor. + + + + [MessageTemplateFormatMethod("messageTemplate")] + public void Information(string messageTemplate, params object[] propertyValues) + { + // Do something + } + + public void Foo() + { + Information("Hello, {Name}!") // Warning: Non-existing argument in message template. + } + + + + + + Initializes a new instance of the class. + + Name of the message template parameter. + + + + Gets the name of the message template parameter. + + The name of the message template parameter. + + + + Forwards log events to another logging pipeline. Copies the events so + that mutations performed on the copies do not affect the originals. + + The properties dictionary is copied, however the values within + the dictionary (of type are expected to + be immutable. + + + + A base class for visitors that rewrite the value with modifications. For example, implementations + might remove all structure properties with a certain name, apply size/length limits, or convert scalar properties of + one type into scalar properties of another. + + + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + When is null + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + When is null + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + When is null + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + When is null + + + + Visit a value of an unsupported type. Returns the value unchanged. + + Operation state. + The value to visit. + The result of visiting . + + + + An abstract base class for visitors that walk data in the + format. Subclasses, by + overriding appropriate methods, may search for, transform, + or print the value structures being visited. + + + Stateless, designed to accommodate allocation-free visiting of multiple + values by the same visitor instance. + + The type of a state object passed through + the visiting process. + The type of the result generated by visiting + a node. + + + + Visit the root node type. This method delegates to + a concrete Visit*Value() method appropriate for the value. + + Operation state. + The value to visit. + The result of visiting . + When is null + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + + + + Visit a value of an unsupported type. Always throws , when is not overridden. + + Operation state. + The value to visit. + The result of visiting . + When is null + Always + + + + May be thrown by log event sinks when a failure occurs. Should not be used in cases + where the exception would propagate out to callers. + + + + + Construct a to communicate a logging failure. + + A message describing the logging failure. + + + + A simple source of information generated by Serilog itself, + for example when exceptions are thrown and caught internally. + + + + + The output mechanism for self-log messages. + + + SelfLog.Out = Console.Error; + + + + + Set the output mechanism for self-log messages. + + A synchronized to which + self-log messages will be written. + When is null + + + + Set the output mechanism for self-log messages. + + An action to invoke with self-log messages. + // ReSharper disable once MemberCanBePrivate.Global + When is null + + + + Clear the output mechanism and disable self-log events. + + // ReSharper disable once MemberCanBePrivate.Global + + + + Write a message to the self-log. + + Standard .NET format string containing the message. + First argument, if supplied. + Second argument, if supplied. + Third argument, if supplied. + + The name is historical; because this is used from third-party sink packages, removing the "Line" + suffix as would seem sensible isn't worth the breakage. + + + + + A value represented as a mapping from keys to values. + + + + + Create a with the provided . + + The key-value mappings represented in the dictionary. + When is null + + + + The dictionary mapping. + + + + + Render the value to the output. + + The output. + A format string applied to the value, or null. + A format provider to apply to the value, or null to use the default. + . + When is null + + + + A property associated with a . + + This type is currently internal, while we consider future directions for the logging pipeline, but should end up public + in future. + + + + No property. + + + + + The name of the property. + + + + + The value of the property. + + + + + Construct a with the specified name and value. + + The name of the property. + The value of the property. + When is null + When is empty or only contains whitespace + When is null + + + + Permit deconstruction of the property into a name/value pair. + + The name of the property. + The value of the property. + + + + + + Indicates whether this instance and a specified are equal. + The to compare with the current instance. + + if and this instance represent the same value; otherwise, . + + + + + + + Descriptive aliases for . + + These do not appear as members of the enumeration + as duplicated underlying values result in issues when presenting + enum values with . + + + + The least significant level of event. + + + + + The most significant level of event. + + + + + A log event. + + + + + Construct a new . + + The time at which the event occurred. + The level of the event. + An exception associated with the event, or null. + The message template describing the event. + Properties associated with the event, including those presented in . + When is null + When is null + + + + Construct a new . + + The time at which the event occurred. + The level of the event. + An exception associated with the event, or null. + The message template describing the event. + Properties associated with the event, including those presented in . + When is null + When is null + + + + The time at which the event occurred. + + + + + The level of the event. + + + + + The message template describing the event. + + + + + Render the message template to the specified output, given the properties associated + with the event. + + The output. + Supplies culture-specific formatting information, or null. + + + + Render the message template given the properties associated + with the event, and return the result. + + Supplies culture-specific formatting information, or null. + + + + Properties associated with the event, including those presented in . + + + + + An exception associated with the event, or null. + + + + + Add a property to the event if not already present, otherwise, update its value. + + The property to add or update. + When is null + + + + Add a property to the event if not already present, otherwise, update its value. + + The property to add or update. + When is default + + + + Add a property to the event if not already present. + + The property to add. + When is null + + + + Add a property to the event if not already present. + + The property to add. + When is default + + + + Remove a property from the event, if present. Otherwise no action + is performed. + + The name of the property to remove. + + + + Specifies the meaning and relative importance of a log event. + + + + + Anything and everything you might want to know about + a running block of code. + + + + + Internal system events that aren't necessarily + observable from the outside. + + + + + The lifeblood of operational intelligence - things + happen. + + + + + Service is degraded or endangered. + + + + + Functionality is unavailable, invariants are broken + or data is lost. + + + + + If you have a pager, it goes off when one of these + occurs. + + + + + A property associated with a . + + + + + Construct a with the specified name and value. + + The name of the property. + The value of the property. + When is null + When is empty or only contains whitespace + When is null + + + + Construct a from an existing instance. + + The existing property. + When is default + + + + The name of the property. + + + + + The value of the property. + + + + + Test to determine if it is a valid property name. + + The name to check. + True if the name is valid; otherwise, false. + + + When is null + When is empty or only contains whitespace + + + + The value associated with a . Divided into scalar, + sequence and structure values to direct serialization into various formats. + + + + + Render the value to the output. + + The output. + A format string applied to the value, or null. + A format provider to apply to the value, or null to use the default. + . + + + + Returns a string that represents the current object. + + + A string that represents the current object. + + 2 + + + + Formats the value of the current instance using the specified format. + + + The value of the current instance in the specified format. + + The format to use.-or- A null reference (Nothing in Visual Basic) to use + the default format defined for the type of the implementation. + The provider to use to format the value.-or- A null reference + (Nothing in Visual Basic) to obtain the numeric format information from the current locale + setting of the operating system. 2 + + + + Represents a message template passed to a log method. The template + can subsequently render the template in textual form given the list + of properties. + + + + + Represents the empty message template. + + + + + Construct a message template using manually-defined text and property tokens. + + The text and property tokens defining the template. + + + + Construct a message template using manually-defined text and property tokens. + + The full text of the template; used by Serilog internally to avoid unneeded + string concatenation. + The text and property tokens defining the template. + When is null + When is null + + + + Similar to , but faster. + + + + + The raw text describing the template. + + + + + Render the template as a string. + + The string representation of the template. + + + + The tokens parsed from the template. + + + + + Convert the message template into a textual message, given the + properties matching the tokens in the message template. + + Properties matching template tokens. + Supplies culture-specific formatting information, or null. + The message created from the template and properties. If the + properties are mismatched with the template, the template will be + returned with incomplete substitution. + When is null + + + + Convert the message template into a textual message, given the + properties matching the tokens in the message template. + + Properties matching template tokens. + The message created from the template and properties. If the + properties are mismatched with the template, the template will be + returned with incomplete substitution. + Supplies culture-specific formatting information, or null. + When is null + When is null + + + + A property value corresponding to a simple, scalar type. + + + + + Construct a with the specified + value. + + The value, which may be null. + + + + The value, which may be null. + + + + + Render the value to the output. + + The output. + A format string applied to the value, or null. + A format provider to apply to the value, or null to use the default. + . + When is null + + + When is null + + + + Determine if this instance is equal to . + + The instance to compare with. + True if the instances are equal; otherwise, false. + + + + Get a hash code representing the value. + + The instance's hash code. + + + + A value represented as an ordered sequence of values. + + + + + Create a with the provided . + + The elements of the sequence. + When is null + + + + The elements of the sequence. + + + + + Render the value to the output. + + The output. + A format string applied to the value, or null. + A format provider to apply to the value, or null to use the default. + . + When is null + + + + A value represented as a collection of name-value properties. + + + + + Construct a with the provided properties. + + Optionally, a piece of metadata describing the "type" of the + structure. Can be null. + The properties of the structure. + When is null + + + + A piece of metadata describing the "type" of the + structure, or null. + + + + + The properties of the structure. + + Not presented as a dictionary because dictionary construction is + relatively expensive; it is cheaper to build a dictionary over properties only + when the structure is of interest. + + + + Render the value to the output. + + The output. + A format string applied to the value, or null. + A format provider to apply to the value, or null to use the default. + . + When is null + + + + Predicates applied to log events that can be used + + + + + Matches events from the specified source type. + + The source type. + A predicate for matching events. + + + + Matches events from the specified source type or namespace and + nested types or namespaces. + + A dotted source type or namespace identifier. + A function that matches log events emitted by the source. + When is null + + + + Matches events with the specified property attached, + regardless of its value. + + The name of the property to match. + A predicate for matching events. + When is null + + + + Matches events with the specified property value. + + The name of the property to match. + The property value to match; must be a scalar type. + Null is allowed. + A predicate for matching events. + When is null + + + + Matches events with the specified property value. + + The name of the property to match. + A predicate for testing + The type of scalar values to match. + A predicate for matching events. + When is null + When is null + + + + Implements the {Level} element. + can now have a fixed width applied to it, as well as casing rules. + Width is set through formats like "u3" (uppercase three chars), + "w1" (one lowercase char), or "t4" (title case four chars). + + + + + A that supports the Serilog + message template format. Formatting log events for display + has a different set of requirements and expectations from + rendering the data within them. To meet this, the formatter + overrides some behavior: First, strings are always output + as literals (not quoted) unless some other format is applied + to them. Second, tokens without matching properties are skipped + rather than being written as raw text. + + + + + Construct a . + + A message template describing the + output messages. + Supplies culture-specific formatting information, or null. + When is null + + + + Format the log event into the output. + + The event to format. + The output. + When is null + When is null + + + + This method will apply only upper or lower case formatting, not fixed width + + + + + Describes the properties available in standard message template-based + output format strings. + + + + + The message rendered from the log event. + + + + + The timestamp of the log event. + + + + + The level of the log event. + + + + + A new line. + + + + + The exception associated with the log event. + + + + + The properties of the log event. + + + + + Create properties from the provided log event. + + The log event. + A dictionary with properties representing the log event. + + + + Create properties from the provided log event. + + The log event. + The output template. + A dictionary with properties representing the log event. + + + + Formats log events in a textual representation. + + + + + Format the log event into the output. + + The event to format. + The output. + + + + Formats log events in a simple JSON structure. Instances of this class + are safe for concurrent access by multiple threads. + + + + + Construct a . + + A string that will be written after each log event is formatted. + If null, will be used. + If true, the message will be rendered and written to the output as a + property named RenderedMessage. + Supplies culture-specific formatting information, or null. + + + + Construct a . + + If true, the properties of the event will be written to + the output without enclosing braces. Otherwise, if false, each event will be written as a well-formed + JSON object. + A string that will be written after each log event is formatted. + If null, will be used. Ignored if + is true. + If true, the message will be rendered and written to the output as a + property named RenderedMessage. + Supplies culture-specific formatting information, or null. + + + + Format the log event into the output. + + The event to format. + The output. + When is null + When is null + + + + Adds a writer function for a given type. + + The type of values, which handles. + The function, which writes the values. + When is null + When is null + + + + Writes out individual renderings of attached properties + + + + + Writes out the values of individual renderings of attached properties + + + + + Writes out the attached properties + + + + + Writes out the attached properties values + + + + + Writes out the attached exception + + + + + (Optionally) writes out the rendered message + + + + + Writes out the message template for the logevent. + + + + + Writes out the log level + + + + + Writes out the log timestamp + + + + + Writes out a structure property + + + + + Writes out a sequence property + + + + + Writes out a dictionary + + + + + Writes out a json property with the specified value on output writer + + + + + Allows a subclass to write out objects that have no configured literal writer. + + The value to be written as a json construct + The writer to write on + + + + Perform simple JSON string escaping on . + + A raw string. + A JSON-escaped version of . + + + + Converts Serilog's structured property value format into JSON. + + + + + Construct a . + + When serializing structured (object) values, + the property name to use for the Serilog field + in the resulting JSON. If null, no type tag field will be written. The default is + "_typeTag". + + + + Format as JSON to . + + The value to format + The output + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + When is null + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + When is null + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + + + + Visit a value. + + Operation state. + The value to visit. + The result of visiting . + + + + Write a literal as a single JSON value, e.g. as a number or string. Override to + support more value types. Don't write arrays/structures through this method - the + active destructuring policies have already indicated the value should be scalar at + this point. + + The value to write. + The output + + + + Write a valid JSON string literal, escaping as necessary. + + The string value to write. + The output. + + + + Formats log events as a raw dump of the message template and properties. + + + + + Format the log event into the output. + + The event to format. + The output. + + + + The core Serilog logging API, used for writing log events. + + + var log = new LoggerConfiguration() + .WriteTo.Console() + .CreateLogger(); + + var thing = "World"; + log.Information("Hello, {Thing}!", thing); + + + The methods on (and its static sibling ) are guaranteed + never to throw exceptions. Methods on all other types may. + + + + + Create a logger that enriches log events via the provided enrichers. + + Enricher that applies in the context. + A logger that will enrich log events as specified. + + + + Create a logger that enriches log events via the provided enrichers. + + Enrichers that apply in the context. + A logger that will enrich log events as specified. + + + + Create a logger that enriches log events with the specified property. + + The name of the property. Must be non-empty. + The property value. + If true, the value will be serialized as a structured + object if possible; if false, the object will be recorded as a scalar or simple array. + A logger that will enrich log events as specified. + + + + Create a logger that marks log events as being from the specified + source type. + + Type generating log messages in the context. + A logger that will enrich log events as specified. + + + + Create a logger that marks log events as being from the specified + source type. + + Type generating log messages in the context. + A logger that will enrich log events as specified. + + + + Write an event to the log. + + The event to write. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + + + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + + + Determine if events at the specified level will be passed through + to the log sinks. + + Level to check. + True if the level is enabled; otherwise, false. + + + + Write a log event with the level. + + Message template describing the event. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level and associated exception. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Uses configured scalar conversion and destructuring rules to bind a set of properties to a + message template. Returns false if the template or values are invalid (ILogger + methods never throw exceptions). + + Message template describing an event. + Objects positionally formatted into the message template. + The internal representation of the template, which may be used to + render the as text. + Captured properties from the template and . + + MessageTemplate template; + IEnumerable<LogEventProperty> properties; + if (Log.BindMessageTemplate("Hello, {Name}!", new[] { "World" }, out template, out properties) + { + var propsByName = properties.ToDictionary(p => p.Name, p => p.Value); + Console.WriteLine(template.Render(propsByName, null)); + // -> "Hello, World!" + } + + + + + Uses configured scalar conversion and destructuring rules to bind a property value to its captured + representation. + + The name of the property. Must be non-empty. + The property value. + If true, the value will be serialized as a structured + object if possible; if false, the object will be recorded as a scalar or simple array. + The resulting property. + True if the property could be bound, otherwise false (ILogger + methods never throw exceptions). + + + + An optional static entry point for logging that can be easily referenced + by different parts of an application. To configure the + set the Logger static property to a logger instance. + + + Log.Logger = new LoggerConfiguration() + .WithConsoleSink() + .CreateLogger(); + + var thing = "World"; + Log.Logger.Information("Hello, {Thing}!", thing); + + + The methods on (and its dynamic sibling ) are guaranteed + never to throw exceptions. Methods on all other types may. + + + + + The globally-shared logger. + + When is null + + + + Resets to the default and disposes the original if possible + + + + + Create a logger that enriches log events via the provided enrichers. + + Enricher that applies in the context. + A logger that will enrich log events as specified. + + + + Create a logger that enriches log events via the provided enrichers. + + Enrichers that apply in the context. + A logger that will enrich log events as specified. + + + + Create a logger that enriches log events with the specified property. + + A logger that will enrich log events as specified. + + + + Create a logger that marks log events as being from the specified + source type. + + Type generating log messages in the context. + A logger that will enrich log events as specified. + + + + Create a logger that marks log events as being from the specified + source type. + + Type generating log messages in the context. + A logger that will enrich log events as specified. + + + + Write an event to the log. + + The event to write. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level. + + The level of the event. + Message template describing the event. + Objects positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + + + Write a log event with the specified level and associated exception. + + The level of the event. + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + + + Determine if events at the specified level will be passed through + to the log sinks. + + Level to check. + True if the level is enabled; otherwise, false. + + + + Write a log event with the level. + + Message template describing the event. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Verbose("Staring into space, wondering if we're alone."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Verbose(ex, "Staring into space, wondering where this comet came from."); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Debug("Starting up at {StartedAt}.", DateTime.Now); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Debug(ex, "Swallowing a mundane exception."); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Information("Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Information(ex, "Processed {RecordCount} records in {TimeMS}.", records.Length, sw.ElapsedMilliseconds); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Warning("Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Warning(ex, "Skipped {SkipCount} records.", skippedRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Error("Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Error(ex, "Failed {ErrorCount} records.", brokenRecords.Length); + + + + + Write a log event with the level. + + Message template describing the event. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level. + + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Fatal("Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + Object positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Write a log event with the level and associated exception. + + Exception related to the event. + Message template describing the event. + Objects positionally formatted into the message template. + + Log.Fatal(ex, "Process terminating."); + + + + + Uses configured scalar conversion and destructuring rules to bind a set of properties to a + message template. Returns false if the template or values are invalid (ILogger + methods never throw exceptions). + + Message template describing an event. + Objects positionally formatted into the message template. + The internal representation of the template, which may be used to + render the as text. + Captured properties from the template and . + + MessageTemplate template; + IEnumerable<LogEventProperty> properties>; + if (Log.BindMessageTemplate("Hello, {Name}!", new[] { "World" }, out template, out properties) + { + var propsByName = properties.ToDictionary(p => p.Name, p => p.Value); + Console.WriteLine(template.Render(propsByName, null)); + // -> "Hello, World!" + } + + + + + Uses configured scalar conversion and destructuring rules to bind a property value to its captured + representation. + + The name of the property. Must be non-empty. + The property value. + If true, the value will be serialized as a structured + object if possible; if false, the object will be recorded as a scalar or simple array. + The resulting property. + True if the property could be bound, otherwise false (ILogger + methods never throw exceptions). + + + + Configuration object for creating instances. + + + + + Construct a . + + + + + Configures the sinks that log events will be emitted to. + + + + + Configures sinks for auditing, instead of regular (safe) logging. When auditing is used, + exceptions from sinks and any intermediate filters propagate back to the caller. Most callers + should use instead. + + + Not all sinks are compatible with transactional auditing requirements (many will use asynchronous + batching to improve write throughput and latency). Sinks need to opt-in to auditing support by + extending , though the generic + method allows any sink class to be adapted for auditing. + + + + + Configures the minimum level at which events will be passed to sinks. If + not specified, only events at the + level and above will be passed through. + + Configuration object allowing method chaining. + + + + Configures enrichment of s. Enrichers can add, remove and + modify the properties associated with events. + + + + + Configures global filtering of s. + + + + + Configures destructuring of message template parameters. + + + + + Apply external settings to the logger configuration. + + + + + Create a logger using the configured sinks, enrichers and minimum level. + + The logger. + To free resources held by sinks ahead of program shutdown, + the returned logger may be cast to and + disposed. + When the logger is already created + + + + Extends with additional methods. + + + + + Create a logger that enriches log events when the specified level is enabled. + + The type of the property value. + The logger. + The log event level used to determine if log is enriched with property. + The name of the property. Must be non-empty. + The property value. + If true, the value will be serialized as a structured + object if possible; if false, the object will be recorded as a scalar or simple array. + A logger that will enrich log events as specified. + When is null + + + + A structure representing the alignment settings to apply when rendering a property. + + + + + Initializes a new instance of . + + The text alignment direction. + The width of the text, in characters. + + + + The text alignment direction. + + + + + The width of the text. + + + + + Defines the direction of the alignment. + + + + + Text will be left-aligned. + + + + + Text will be right-aligned. + + + + + Instructs the logger on how to store information about provided + parameters. + + + + + Convert known types and objects to scalars, arrays to sequences. + + + + + Convert all types to scalar strings. Prefix name with '$'. + + + + + Convert known types to scalars, destructure objects and collections + into sequences and structures. Prefix name with '@'. + + + + + Parses message template strings into sequences of text or property + tokens. + + + + + Parse the supplied message template. + + The message template to parse. + A sequence of text or property tokens. Where the template + is not syntactically valid, text tokens will be returned. The parser + will make a best effort to extract valid property tokens even in the + presence of parsing issues. + When is null + + + + An element parsed from a message template string. + + + + + Construct a . + + The token's start index in the template. + + + + The token's start index in the template. + + + + + The token's length. + + + + + Render the token to the output. + + Properties that may be represented by the token. + Output for the rendered string. + Supplies culture-specific formatting information, or null. + + + + A message template token representing a log event property. + + + + + Construct a . + + The name of the property. + The token as it appears in the message template. + The format applied to the property, if any. + The destructuring strategy applied to the property, if any. + + + + + Construct a . + + The name of the property. + The token as it appears in the message template. + The format applied to the property, if any. + The alignment applied to the property, if any. + The destructuring strategy applied to the property, if any. + The token's start index in the template. + When is null + When is null + + + + The token's length. + + + + + Render the token to the output. + + Properties that may be represented by the token. + Output for the rendered string. + Supplies culture-specific formatting information, or null. + When is null + When is null + + + + The property name. + + + + + Destructuring strategy applied to the property. + + + + + Format applied to the property. + + + + + Alignment applied to the property. + + + + + True if the property name is a positional index; otherwise, false. + + + + + Try to get the integer value represented by the property name. + + The integer value, if present. + True if the property is positional, otherwise false. + + + + Determines whether the specified is equal to the current . + + + true if the specified object is equal to the current object; otherwise, false. + + The object to compare with the current object. 2 + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + 2 + + + + Returns a string that represents the current object. + + + A string that represents the current object. + + 2 + + + + A message template token representing literal text. + + + + + Construct a . + + The text of the token. + The token's start index in the template. + When is null + + + + The token's length. + + + + + Render the token to the output. + + Properties that may be represented by the token. + Output for the rendered string. + Supplies culture-specific formatting information, or null. + When is null + + + + Determines whether the specified is equal to the current . + + + true if the specified object is equal to the current object; otherwise, false. + + The object to compare with the current object. 2 + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + 2 + + + + Returns a string that represents the current object. + + + A string that represents the current object. + + 2 + + + + The text of the token. + + + + + Apply upper or lower casing to when is provided. + Returns when no or invalid format provided + + The provided with formatting applied + + + + Writes the provided value to the output, applying direction-based padding when is provided. + + + + + Contains "fake extension" methods for the Serilog configuration API. + By default the settings knows how to find extension methods, but some configuration + are actually "regular" method calls and would not be found otherwise. + + This static class contains internal methods that can be used instead. + + See also + + + + diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Core.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Core.dll new file mode 100644 index 0000000..1bf2100 Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Core.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Core.xml b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Core.xml new file mode 100644 index 0000000..6176599 --- /dev/null +++ b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Core.xml @@ -0,0 +1,1595 @@ + + + + VPet-Simulator.Core + + + + + WorkTimer.xaml 的交互逻辑 + + + WorkTimer + + + + + 显示模式 + 0 = 默认 + 1 = 剩余时间 + 2 = 已获取(金钱/等级) + + + + + 累计获得的钱/经验值 + + + + + 开始时间 + + + + + 最大时间(分钟) + + + + + UI相关显示 + + + + + + InitializeComponent + + + + + Main.xaml 的交互逻辑 + + + Main + + + + + 游戏核心 + + + + + 菜单栏 + + + + + 消息栏 + + + + + 工作显示栏 + + + + + 刷新时间时会调用该方法 + + + + + 刷新时间时会调用该方法,在所有任务处理完之后 + + + + + 是否开始运行 + + + + + 自动加载触摸事件 + + + + + 播放语音 + + 语音位置 + + + + 清理所有状态 + + + + + 当前动画类型 + + + + + 默认循环次数 + + + + + 以标准形式显示当前默认状态 + + + + + 显示默认情况 + + + + + 显示结束动画 + + 结束后接下来 + 是否成功结束 + + + + 显示关机动画 + + + + + 显示摸头情况 + + + + + 显示摸身体情况 + + + + + 显示待机(模式1)情况 + + + + + 显示待机(模式1)情况 + + + + + 显示待机(模式2)情况 + + + + + 显示待机(模式2)情况 + + + + + 显示蹲下情况 + + + + + 显示蹲下情况 + + + + + 显示无聊情况 + + + + + 显示无聊情况 + + + + + 显示睡觉情况 + + + + + 显示睡觉情况 (正常) + + + + + 显示睡觉情况 (强制) + + + + + 显示工作情况 + + + + + 显示工作情况结束 + + + + + 显示工作情况循环 + + + + + 显示工作情况 + + + + + 显示工作情况循环 + + + + + 显示工作情况结束 + + + + + 显示学习情况 + + + + + 显示学习情况 + + + + + 显示拖拽情况 + + + + + 显示拖拽中 + + + + + 显示掉到地上 从左边 + + + + + 显示掉到地上 从左边 + + + + + 显示向左走 (有判断) + + + + + 显示向左走 + + + + + 显示向右走 (有判断) + + + + + 显示向右走 + + + + + 显示向左爬 (有判断) + + + + + 显示向左爬 + + + + + 显示向右爬 (有判断) + + + + + 显示向右爬 + + + + + 显示左墙壁爬行 上 + + + + + 显示左墙壁爬行 上 + + + + + 显示左墙壁爬行 下 + + + + + 显示左墙壁爬行 下 + + + + + 显示右墙壁爬行 上 + + + + + 显示右墙壁爬行 上 + + + + + 显示右墙壁爬行 下 + + + + + 显示右墙壁爬行 下 + + + + + 显示顶部墙壁爬行向右 + + + + + 显示顶部墙壁爬行向左 + + + + + 显示顶部墙壁爬行向左 + + + + + 显示顶部墙壁爬行向左 + + + + + 显示掉落向左 + + + + + 显示掉落向左 + + + + + 显示掉落向右 + + + + + 显示掉落向右 + + + + + 显示动画 + + 动画类型 + 动画结束后操作 + + + + 显示动画 (自动多层切换) + + 动画 + 结束操作 + + + + 处理说话内容 + + + + + 事件Timer + + + + + 说话 + + 说话内容 + + + + 根据消耗计算相关数据 + + 过去时间倍率 + + + + 定点移动位置向量 + + + + + 定点移动定时器 + + + + + 设置计算间隔 + + 计算间隔 + + + + 是否启用智能移动 + + + + + 设置移动模式 + + 允许移动 + 启用智能移动 + 智能移动周期 + + + + 当前状态 + + + + + 当前正在的状态 + + + + + 默认:啥都没干 + + + + + 正在干活1 + + + + + 正在干活1 + + + + + 学习中 + + + + + 睡觉 + + + + + MainGrid Name Field + + + + + UIGrid_Back Name Field + + + + + UIGrid Name Field + + + + + InitializeComponent + + + + + MessageBar.xaml 的交互逻辑 + + + MessageBar + + + + + 显示消息 + + 名字 + 内容 + + + + 强制关闭 + + + + + TText Name Field + + + + + InitializeComponent + + + + + ToolBar.xaml 的交互逻辑 + + + ToolBar + + + + + 窗口类型 + + + + + 投喂 + + + + + 互动 + + + + + 自定 + + + + + 设置 + + + + + 添加按钮 + + 按钮位置 + 显示名称 + 功能 + + + + MainGrid Name Field + + + + + BdrPanel Name Field + + + + + MenuDIY Name Field + + + + + MenuSetting Name Field + + + + + InitializeComponent + + + + + FoodAnimation.xaml 的交互逻辑 + + + FoodAnimation + + + + + InitializeComponent + + + + + 图像显示核心 + + + + + 动画类型 + + + + + 被提起动态 (循环) + + + + + 被提起静态 (开始) + + + + + 被提起静态 (循环) + + + + + 从上向右爬 (循环) + + + + + 从上向左爬 (循环) + + + + + 爬起向右 + + + + + 爬起向左 + + + + + 从右边爬 (开始) + + + + + 从左边爬 (开始) + + + + + 从右边爬 (循环) + + + + + 从左边爬 (循环) + + + + + 呼吸 (循环) + + + + + 摸头 (开始) + + + + + 摸头 (循环) + + + + + 摸头 (结束) + + + + + 摸身体 (开始) + + + + + 摸身体 (循环) + + + + + 摸身体 (结束) + + + + + 爬行向右 (开始) + + + + + 爬行向右 (循环) + + + + + 爬行向右 (结束) + + + + + 爬行向左 (开始) + + + + + 爬行向左 (循环) + + + + + 爬行向左 (结束) + + + + + 下蹲 (开始) + + + + + 下蹲 (循环) + + + + + 下蹲 (结束) + + + + + 下落向左 (开始) + + + + + 下落向左 (循环) + + + + + 下落向左 (结束) + + + + + 下落向右 (开始/循环) + + + + + 下落向右 (开始/循环) + + + + + 下落向右 (结束) + + + + + 走路向右 (开始) + + + + + 走路向右 (循环) + + + + + 走路向右 (结束) + + + + + 走路向左 (开始) + + + + + 走路向左 (循环) + + + + + 走路向左 (结束) + + + + + 无聊 (开始) + + + + + 无聊 (循环) + + + + + 无聊 (结束) + + + + + 睡觉 (开始) + + + + + 睡觉 (循环) + + + + + 睡觉 (结束) + + + + + 说话 (开始) + + + + + 说话 (循环) + + + + + 说话 (结束) + + + + + 说话 (开始) + + + + + 说话 (循环) + + + + + 说话 (结束) + + + + + 说话 (开始) + + + + + 说话 (循环) + + + + + 说话 (结束) + + + + + 待机 模式1 (开始) + + + + + 待机 模式1 (循环) + + + + + 待机 模式1 (结束) + + + + + 待机 模式2 (开始) + + + + + 待机 模式2 (循环) + + + + + 待机 模式2 (结束) + + + + + 开机 + + + + + 关机 + + + + + 学习 (开始) + + + + + 学习 (循环) + + + + + 学习 (结束) + + + + + 工作 (开始) + + + + + 工作 (循环) + + + + + 工作 (结束) + + + + + 直播 (开始) + + + + + 直播 (循环) + + + + + 直播 (结束) + + + + + 图像字典 + + + + + 通用UI资源 + + + + + 通用设置属性/方法 + + + + + 添加动画 + + 动画 + 类型 + + + + 添加动画 自动创建 + + 位置 + 状态类型 + 动画类型 + + + + 随机数字典(用于确保随机动画不会错位) + + + + + + + + 动画类型默认前文本 + + + + + 动画设置 + + + + + 摸头触发位置 + + + + + 提起触发位置 + + + + + 摸头触发大小 + + + + + 提起触发大小 + + + + + 提起定位点 + + + + + 行走速度 + + + + + 侧边爬行速度 + + + + + 顶部爬行速度 + + + + + 爬行速度 + + + + + 掉落速度 X轴 + + + + + 掉落速度 Y轴 + + + + + 定位爬行左边距离 + + + + + 定位爬行右边距离 + + + + + 定位爬行上边距离 + + + + + 初始化设置 + + + + + + 加载更多设置,新的替换后来的,允许空内容 + + + + + 无:不执行动作 + + + + + 默认说话 + + + + + 严肃 + + + + + 闪亮 + + + + + 自己 + + + + + 错误 + + + + + IEyeTracking.xaml 的交互逻辑 + + + EyeTracking + + + + + InitializeComponent + + + + + 动画显示接口 + + + + + 从0开始运行该动画 + + + + + 当前动画播放状态 + + + + + 是否循环播放 + + + + + 是否继续播放 + + + + + 从0开始运行该动画, 等待部署完成后执行 + + + + + 该动画模式 + + + + + 该动画类型 + + + + + 停止动画 + + 停止动画时是否允许执行停止帧 + + + + Picture.xaml 的交互逻辑 + + + + + 新建新静态图像 + + 图片路径 + + + + 图片资源 + + + + + PNGAnimation.xaml 的交互逻辑 + + + + + 所有动画帧 + + + + + 当前动画播放状态 + + + + + 当前动画是否执行ENDACTION + + + + + 是否循环播放 + + + + + 是否循环播放 + + + + + 是否准备完成 + + + + + 动画停止时运行的方法 + + + + + 图片资源 + + + + + 新建 PNG 动画 + + 文件夹位置 + 文件内容列表 + 是否循环 + + + + 单帧动画 + + + + + 帧时间 + + + + + 运行该图层 + + + + + 从0开始运行该动画 + + + + + 获取资源笔刷 + + + + + + + 游戏使用资源 + + + + + 控制器 + + + + + 触摸范围和事件列表 + + + + + 图形核心 + + + + + 游戏数据 + + + + + 触摸范围事件 + + + + + 位置 + + + + + 大小 + + + + + 如果是触发的内容 + + + + + 否:立即触发/是:长按触发 + + + + + 创建个触摸范围事件 + + 位置 + 大小 + 如果是触发的内容 + 否:立即触发/是:长按触发 + + + + 判断是否成功触发该点击事件 + + 位置 + 是否成功 + + + + 桌宠控制器 需自行实现 + + + + + 移动桌宠位置 (自带缩放倍率) + + X轴 + Y轴 + + + + 获取桌宠距离左侧的位置 + + + + + 获取桌宠距离右侧的位置 + + + + + 获取桌宠距离上方的位置 + + + + + 获取桌宠距离下方的位置 + + + + + 缩放比例 + + + + + 按多久视为长按 单位毫秒 + + + + + 显示面板窗体 + + + + + 启用计算等数据功能 + + + + + 互动周期 + + + + + 宠物加载器 + + + + + 宠物图像 + + + + + 图像位置 + + + + + 宠物名字 + + + + + 宠物介绍 + + + + + 游戏存档 + + + + + 宠物名字 + + + + + 金钱 + + + + + 经验值 + + + + + 等级 + + + + + 升级所需经验值 + + + + + + 体力 0-100 + + + + + 变化 体力 + + + + + 饱腹度 + + + + + 变化 食物 + + + + + 口渴度 + + + + + 变化 口渴度 + + + + + 心情 + + + + + 变化 心情 + + + + + 健康(生病)(隐藏) + + + + + 好感度(隐藏)(累加值) + + + + + 清除变化 + + + + + 宠物状态模式 + + + + + 高兴 + + + + + 普通 + + + + + 状态不佳 + + + + + 生病(躺床) + + + + + 计算宠物当前状态 + + + + + 新游戏 + + + + + 读档 + + + + + 读档 + + + + + 存档 + + 存档行 + + + + 强类型资源类,用于查找本地化字符串等。 + + + + + 返回此类使用的缓存 ResourceManager 实例。 + + + + + 重写当前线程的 CurrentUICulture 属性,对 + 使用此强类型资源类的所有资源查找执行重写。 + + + + diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Windows.Interface.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Windows.Interface.dll new file mode 100644 index 0000000..27ca326 Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Windows.Interface.dll differ diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Windows.Interface.xml b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Windows.Interface.xml new file mode 100644 index 0000000..7a9db3f --- /dev/null +++ b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet-Simulator.Windows.Interface.xml @@ -0,0 +1,225 @@ + + + + VPet-Simulator.Windows.Interface + + + + + 是否为Steam用户 + + + + + 游戏设置 + + + + + 宠物加载器列表 + + + + + 桌宠数据核心 + + + + + 桌宠主要部件 + + + + + 版本号 + + + + + 版本号 + + + + + 上次点击时间 (Tick) + + + + + 所有三方插件 + + + + + 设置游戏缩放倍率 + + 缩放倍率 范围0.1-10 + + + + 保存设置 + + + + + 加载DIY内容 + + + + + 运行动作 + + 动作名称 + + + + 这是插件的主体内容 请继承这个类 + + + + + 通过插件名称定位插件 + + + + + 主窗体, 主程序提供的各种功能和设置等 大部分参数和调用均在这里 + + + + + MOD插件初始化 + + 主窗体 + 请不要加载游戏和玩家数据,仅用作初始化 + 加载数据(CORE)/游戏(SAVE),请使用 LoadPlugin + + + + 初始化程序+读取存档 + + 例:添加自己的Tick到 mw.Main.EventTimer + 例:创建使用UI的桌面控件 + + + + 游戏结束 (可以保存或清空等,不过保存有专门的Save()) + + + + + 储存游戏 (可以写 GameSave.Other 储存设置和数据等) + + + + + 打开代码插件设置 + + + + + 重载DIY按钮, 如需添加自定义按钮可在此处添加 + + + + + 缩放倍率 + + + + + 是否为更大的屏幕 + + + + + 是否启用数据收集 //TODO:判断游戏是否是原版的 + + + + + 数据收集频率 + + + + + 自动保存频率 (min) + + + + + 是否置于顶层 + + + + + 数据收集是否被禁止(当日) + + + + + 按多久视为长按 单位毫秒 + + + + + 互动周期 + + + + + 计算间隔 + + + + + 允许移动事件 + + + + + 智能移动 + + + + + 启用计算等数据功能 + + + + + 智能移动周期 (秒) + + + + + 开机启动 + + + + + 开机启动 Steam + + + + + 桌宠选择内容 + + + + + 是否记录游戏退出位置 (默认:是) + + + + + 记录上次退出位置 + + + + + 设置中桌宠启动的位置 + + + + diff --git a/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet.Plugin.VPetTTS.dll b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet.Plugin.VPetTTS.dll new file mode 100644 index 0000000..d4954be Binary files /dev/null and b/VPet.Plugin.EdgeTTS/1101_EdgeTTS/plugin/VPet.Plugin.VPetTTS.dll differ diff --git a/VPet.Plugin.EdgeTTS/Properties/AssemblyInfo.cs b/VPet.Plugin.EdgeTTS/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..6a98283 --- /dev/null +++ b/VPet.Plugin.EdgeTTS/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的一般信息由以下 +// 控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("VPet.Plugin.VPetTTS")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("VPet.Plugin.VPetTTS")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 会使此程序集中的类型 +//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 +//请将此类型的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID +[assembly: Guid("a826a8d4-a741-49bf-b857-e2ea9a462db7")] + +// 程序集的版本信息由下列四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 +//通过使用 "*",如下所示: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/VPet.Plugin.EdgeTTS/Setting.cs b/VPet.Plugin.EdgeTTS/Setting.cs new file mode 100644 index 0000000..e664099 --- /dev/null +++ b/VPet.Plugin.EdgeTTS/Setting.cs @@ -0,0 +1,58 @@ +using LinePutScript.Converter; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace VPet.Plugin.VPetTTS +{ + public class Setting + { + /// + /// 音量大小 + /// + [Line] + public int Volume { get; set; } = 100; + + /// + /// 语速 + /// + [Line] + public double Rate + { + get => rate; set + { + rate = value; + RateStr = $"{(value >= 0 ? "+" : "")}{value:f2}%"; + } + } + private double rate = 0; + public string RateStr { get; private set; } = "+0%"; + double pitch = 10; + + /// + /// 音调 + /// + [Line] + public double Pitch + { + get + { + return pitch; + } + set + { + pitch = value; + PitchStr = $"{(value >= 0 ? "+" : "")}{value:f2}Hz"; + } + } + + public string PitchStr { get; private set; } = "+10Hz"; + /// + /// 讲述人 + /// + [Line] + public string Speaker { get; set; } = "zh-CN-XiaoyiNeural"; + } +} diff --git a/VPet.Plugin.EdgeTTS/VPETTTS.cs b/VPet.Plugin.EdgeTTS/VPETTTS.cs new file mode 100644 index 0000000..447b28e --- /dev/null +++ b/VPet.Plugin.EdgeTTS/VPETTTS.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using VPet_Simulator.Windows.Interface; +using EdgeTTS; +using LinePutScript.Converter; +using LinePutScript; +using System.IO; +using VPet_Simulator.Core; + +namespace VPet.Plugin.VPetTTS +{ + public class VPETTTS : MainPlugin + { + IMainWindow mw; + EdgeTTSClient etts; + Setting Set; + public VPETTTS(IMainWindow mainwin) : base(mainwin) + { + mw = mainwin; + } + public override void LoadPlugin() + { + etts = new EdgeTTSClient(); + var line = MW.Set.FindLine("DemoClock"); + if (line == null) + { + Set = new Setting(); + } + else + { + Set = LPSConvert.DeserializeObject(line); + } + if (!Directory.Exists(GraphCore.CachePath + @"\voice")) + Directory.CreateDirectory(GraphCore.CachePath + @"\voice"); + mw.Main.OnSay += Main_OnSay; + } + + private void Main_OnSay(string saythings) + {//说话语音 + var path = GraphCore.CachePath + $"\\voice\\{Sub.GetHashCode(saythings):X}.mp3"; + if (File.Exists(path)) + { + mw.Main.PlayVoice(new Uri(path)); + }else + { + var res = etts.SynthesisAsync(saythings, Set.Speaker, Set.PitchStr, Set.RateStr).Result; + if (res.Code == ResultCode.Success) + { + FileStream fs = new FileStream(path, FileMode.OpenOrCreate); + BinaryWriter w = new BinaryWriter(fs); + w.Write(res.Data.ToArray()); + fs.Close(); + fs.Dispose(); + w.Dispose(); + mw.Main.PlayVoice(new Uri(path)); + } + } + } + + //public override void Save() + //{ + // MW.Set.Remove("DemoClock"); + // MW.Set.Add(LPSConvert.SerializeObject(Set, "DemoClock")); + //} + public override string PluginName => "EdgeTTS"; + } +} diff --git a/VPet.Plugin.EdgeTTS/VPet.Plugin.VPetTTS.csproj b/VPet.Plugin.EdgeTTS/VPet.Plugin.VPetTTS.csproj new file mode 100644 index 0000000..8b6269b --- /dev/null +++ b/VPet.Plugin.EdgeTTS/VPet.Plugin.VPetTTS.csproj @@ -0,0 +1,79 @@ + + + + + Debug + AnyCPU + {A826A8D4-A741-49BF-B857-E2EA9A462DB7} + Library + Properties + VPet.Plugin.VPetTTS + VPet.Plugin.VPetTTS + v4.6.2 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\EdgeTTS.Framework.1.0.1\lib\net462\EdgeTTS.Framework.dll + + + ..\packages\LinePutScript.1.8.0\lib\net462\LinePutScript.dll + + + ..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll + + + ..\packages\Panuon.WPF.1.0.1\lib\net462\Panuon.WPF.dll + + + ..\packages\Panuon.WPF.UI.1.1.11.8\lib\net462\Panuon.WPF.UI.dll + + + + + ..\packages\Serilog.2.12.0\lib\net46\Serilog.dll + + + + + + + + + + + ..\packages\VPet-Simulator.Core.0.1.5\lib\net462\VPet-Simulator.Core.dll + + + ..\packages\VPet-Simulator.Windows.Interface.0.1.4\lib\net462\VPet-Simulator.Windows.Interface.dll + + + + + + + + + + + + + \ No newline at end of file diff --git a/VPet.Plugin.EdgeTTS/packages.config b/VPet.Plugin.EdgeTTS/packages.config new file mode 100644 index 0000000..7461ece --- /dev/null +++ b/VPet.Plugin.EdgeTTS/packages.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/VPet.Plugin.DemoClock.sln b/VPet.Plugin.sln similarity index 69% rename from VPet.Plugin.DemoClock.sln rename to VPet.Plugin.sln index 998a5a5..817f9a3 100644 --- a/VPet.Plugin.DemoClock.sln +++ b/VPet.Plugin.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 17.4.33213.308 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VPet.Plugin.DemoClock", "VPet.Plugin.DemoClock\VPet.Plugin.DemoClock.csproj", "{D23F1150-999F-4698-800C-4E60FF853A3E}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VPet.Plugin.VPetTTS", "VPet.Plugin.EdgeTTS\VPet.Plugin.VPetTTS.csproj", "{A826A8D4-A741-49BF-B857-E2EA9A462DB7}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {D23F1150-999F-4698-800C-4E60FF853A3E}.Debug|Any CPU.Build.0 = Debug|Any CPU {D23F1150-999F-4698-800C-4E60FF853A3E}.Release|Any CPU.ActiveCfg = Release|Any CPU {D23F1150-999F-4698-800C-4E60FF853A3E}.Release|Any CPU.Build.0 = Release|Any CPU + {A826A8D4-A741-49BF-B857-E2EA9A462DB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A826A8D4-A741-49BF-B857-E2EA9A462DB7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A826A8D4-A741-49BF-B857-E2EA9A462DB7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A826A8D4-A741-49BF-B857-E2EA9A462DB7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/edgetts.png b/edgetts.png new file mode 100644 index 0000000..85f0e4e Binary files /dev/null and b/edgetts.png differ