diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d9fbf36 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vs/ +packages/ +FaceDetect/obj/ diff --git a/FaceDetect.sln b/FaceDetect.sln new file mode 100644 index 0000000..dc841c8 --- /dev/null +++ b/FaceDetect.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.2.32616.157 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FaceDetect", "FaceDetect\FaceDetect.csproj", "{D1AC3DD6-CA8D-4141-A250-E17EF25D6091}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D1AC3DD6-CA8D-4141-A250-E17EF25D6091}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D1AC3DD6-CA8D-4141-A250-E17EF25D6091}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D1AC3DD6-CA8D-4141-A250-E17EF25D6091}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D1AC3DD6-CA8D-4141-A250-E17EF25D6091}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B8632D8A-9E42-409F-93B9-1326F7D40EFC} + EndGlobalSection +EndGlobal diff --git a/FaceDetect/App.config b/FaceDetect/App.config new file mode 100644 index 0000000..85199a0 --- /dev/null +++ b/FaceDetect/App.config @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/FaceDetect/App.xaml b/FaceDetect/App.xaml new file mode 100644 index 0000000..3f623a3 --- /dev/null +++ b/FaceDetect/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/FaceDetect/App.xaml.cs b/FaceDetect/App.xaml.cs new file mode 100644 index 0000000..7b2aad3 --- /dev/null +++ b/FaceDetect/App.xaml.cs @@ -0,0 +1,70 @@ +using Microsoft.VisualBasic.ApplicationServices; +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace FaceDetect +{ + public class EntryPoint + { + [STAThread] + public static void Main(string[] args) + { + SingleInstanceManager manager = new SingleInstanceManager(); + manager.Run(args); + } + } + /// + /// App.xaml 的交互逻辑 + /// + public partial class App : Application + { + public App() + { + InitializeComponent(); + } + public void Activate() + { + this.MainWindow.Show(); + this.MainWindow.Activate(); + } + } + + public class SingleInstanceManager : + Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase + { + private App wpfapp; // 这才是真正的WPF Application + /// + /// 单例程序 + /// + public SingleInstanceManager() + { + this.IsSingleInstance = true; + } + + // 第一次打开调这个方法 + protected override bool OnStartup( + Microsoft.VisualBasic.ApplicationServices.StartupEventArgs e) + { + wpfapp = new App(); + wpfapp.Run(); + + return false; + } + + /// + /// 当有其他应用程序实例化时,则触发此事件,弹出已存在的实例窗口 + /// + /// + protected override void OnStartupNextInstance(StartupNextInstanceEventArgs eventArgs) + { + // Subsequent launches + base.OnStartupNextInstance(eventArgs); + //wpfapp.Activate(); + } + } +} diff --git a/FaceDetect/Common/BaiduFaceSdk.cs b/FaceDetect/Common/BaiduFaceSdk.cs new file mode 100644 index 0000000..67a5818 --- /dev/null +++ b/FaceDetect/Common/BaiduFaceSdk.cs @@ -0,0 +1,877 @@ +using FaceDetect.Model; +using Newtonsoft.Json; +using OpenCvSharp; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Common +{ + public class BaiduFaceSdk + { + public static BaiduFaceSdk SDK + { + get + { + if (_sdk == null) + _sdk = new BaiduFaceSdk(); + return _sdk; + } + } + + private static BaiduFaceSdk _sdk; + + #region 百度DLL导入 + // sdk初始化 + [DllImport("BaiduFaceApi.dll", EntryPoint = "sdk_init", CharSet = CharSet.Ansi + , CallingConvention = CallingConvention.Cdecl)] + private static extern int sdk_init(string model_path); + + // 是否授权 + [DllImport("BaiduFaceApi.dll", EntryPoint = "is_auth", CharSet = CharSet.Ansi + , CallingConvention = CallingConvention.Cdecl)] + private static extern bool is_auth(); + + // sdk销毁 + [DllImport("BaiduFaceApi.dll", EntryPoint = "sdk_destroy", CharSet = CharSet.Ansi + , CallingConvention = CallingConvention.Cdecl)] + private static extern void sdk_destroy(); + + // type 为0时候执行RGB人脸跟踪,1时候执行NIR人脸跟踪 + [DllImport("BaiduFaceApi.dll", EntryPoint = "track", CharSet = CharSet.Ansi + , CallingConvention = CallingConvention.Cdecl)] + public static extern int track(IntPtr ptr, IntPtr mat, int type); + + // type 为0时候执行RGB人脸跟踪,1时候执行NIR人脸跟踪 + [DllImport("BaiduFaceApi.dll", EntryPoint = "clear_track_history", CharSet = CharSet.Ansi + , CallingConvention = CallingConvention.Cdecl)] + public static extern void clear_track_history(int type); + + // 获取人脸属性 + [DllImport("BaiduFaceApi.dll", EntryPoint = "face_attr", CharSet = CharSet.Ansi + , CallingConvention = CallingConvention.Cdecl)] + public static extern int face_attr(IntPtr ptr, IntPtr mat); + + //人脸检测 type 0: 表示rgb 人脸检测 1:表示nir人脸检测 + [DllImport("BaiduFaceApi.dll", EntryPoint = "detect", CharSet = CharSet.Ansi + , CallingConvention = CallingConvention.Cdecl)] + public static extern int detect(IntPtr ptr, IntPtr mat, int type); + #endregion + #region 百度结构体 + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct BDFaceBBox + { + public int index; // 人脸索引值 + public float center_x; // 人脸中心点x坐标 + public float center_y; // 人脸中心点y坐标 + public float width; // 人脸宽度 + public float height; // 人脸高度 + public float angle; // 人脸角度 + public float score; // 人脸置信度 + } + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct BDFaceLandmark + { + public int index; // 人脸关键点索引值 + public int size; // 人脸关键点数量 + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 144)] + public float[] data;// = new float[144]; + public float score; // 人脸关键点置信度 + } + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct BDFaceTrackInfo + { + public int face_id; + [MarshalAs(UnmanagedType.Struct)] + public BDFaceBBox box; + [MarshalAs(UnmanagedType.Struct)] + public BDFaceLandmark landmark; + } + /// + /// 人脸表情属性枚举 + /// + enum BDFaceAttributeEmotionType + { + BDFACE_ATTRIBUTE_EMOTION_FROWN = 0, // 皱眉 + BDFACE_ATTRIBUTE_EMOTION_SMILE = 1, // 笑 + BDFACE_ATTRIBUTE_EMOTION_CALM = 2, // 平静 + }; + + /// + /// 人脸种族属性枚举 + /// + enum BDFaceRace + { + BDFACE_RACE_YELLOW = 0, // 黄种人 + BDFACE_RACE_WHITE = 1, // 白种人 + BDFACE_RACE_BLACK = 2, // 黑种人 + BDFACE_RACE_INDIAN = 3, // 印第安人 + }; + + /// + /// 眼镜状态属性枚举 + /// + enum BDFaceGlasses + { + BDFACE_NO_GLASSES = 0, // 无眼镜 + BDFACE_GLASSES = 1, // 有眼镜 + BDFACE_SUN_GLASSES = 2, // 墨镜 + }; + + /// + /// 性别属性枚举 + /// + public enum BDFaceGender + { + BDFACE_GENDER_FEMAILE = 0, // 女性 + BDFACE_GENDER_MALE = 1, // 男性 + }; + + + /// + /// 人脸属性结构体 + /// + [StructLayout(LayoutKind.Sequential, Pack = 1)] + struct BDFaceAttribute + { + public int age; // 年龄 + public BDFaceRace race; // 种族 + public BDFaceAttributeEmotionType emotion; // 表情 + public BDFaceGlasses glasses; // 戴眼镜状态 + public BDFaceGender gender; // 性别 + }; + #endregion + #region 业务逻辑类 + /// + /// 综合识别类 + /// + public struct FaceDectData + { + public int index; // 人脸索引值 + public float center_x; // 人脸中心点x坐标 + public float center_y; // 人脸中心点y坐标 + public float width; // 人脸宽度 + public float height; // 人脸高度 + public float angle; // 人脸角度 + public float score; // 人脸置信度 + public int age;// 年龄 + public BDFaceGender gender;// 性别 + } + #endregion + #region 业务逻辑变量 + /// + /// type 为0时候执行RGB人脸跟踪,1时候执行NIR人脸跟踪 + /// + private int _trackType = 0; + /// + /// 人脸属性值空默认值 + /// + private BDFaceAttribute[] _emptyAttr = new BDFaceAttribute[0]; + /// + /// 人脸检测空默认值 + /// + private BDFaceBBox[] _emptyBox = new BDFaceBBox[0]; + /// + /// 人脸特征空默认值 + /// + private BDFaceTrackInfo[] _emptyTrack = new BDFaceTrackInfo[0]; + /// + /// 人脸综合空默认值 + /// + private FaceDectData[] _emptyInfo = new FaceDectData[0]; + /// + /// 停留两秒后被判定的当前检测到的主 人脸 + /// + public FaceDectData? _masterFace = null; + /// + /// 近期人脸特征字典(从未检测到人脸到检测到人脸期间的人脸,当未检测到人脸时会清空) + /// + private Dictionary _faceDic = new Dictionary(); + /// + /// 首次进入时的人脸时间字典 + /// + private Dictionary _faceEnterDic = new Dictionary(); + /// + /// 首次未被识别到的人脸时间字典(检测到不同人脸时会记录上一个人脸id和(第一次未检测到这个人的)时间) + /// + private Dictionary _faceLeaveDic = new Dictionary(); + private bool _isSendLive; + #endregion + #region 方法 + /// + /// 初始化 + /// + /// true-成功 false-失败 + public static bool Init() + { + try + { + //更新sdk配置文件 + UpdateConfig(); + //初始化 + int n = sdk_init(AppDomain.CurrentDomain.BaseDirectory); + if (n != 0) + { + Log.MyLog.WriteLogFile("百度人脸Sdk初始化失败!", "BaiduSDKError"); + return false; + } + if (is_auth()) + { + return true; + } + else + { + Log.MyLog.WriteLogFile("设备未授权!", "BaiduSDKError"); + return false; + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("百度人脸Sdk初始化异常:" + ex.Message); + return false; + } + } + /// + /// 使用完毕,销毁sdk,释放内存 + /// + public static void Destory() + { + try + { + sdk_destroy(); + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("百度人脸Sdk销毁异常:" + ex.Message); + } + } + /// + /// 更新Sdk配置文件 + /// + public static void UpdateConfig() + { + try + { + var filePath = Path.Combine(ComParameters.Parameters._baseDir, "config", "detect.json"); + if (!File.Exists(filePath)) + { + Log.MyLog.WriteLogFile("Sdk配置文件路径异常:" + filePath); + return; + } + var content = FileManage.ReadJsonFile(filePath); + if (!string.IsNullOrEmpty(content)) + { + var model = JsonConvert.DeserializeObject(content); + model.max_detect_num = ComParameters.Parameters._maxDectNum; + FileManage.WriteJsonFile(filePath, JsonConvert.SerializeObject(model)); + } + + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("更新Sdk配置文件毁异常:" + ex.Message); + } + } + /// + /// 人脸检测 + /// + /// + /// + /// + private BDFaceBBox[] DetectFace(Mat mat, int maxDectNum) + { + try + { + int sizeTrack = Marshal.SizeOf(typeof(BDFaceBBox)); + IntPtr ptT = Marshal.AllocHGlobal(sizeTrack * maxDectNum); + int faceNum = detect(ptT, mat.CvPtr, _trackType); + if (faceNum > 0) + { + // 因为需预分配内存,所以返回的人脸数若大于预先分配的内存数,则仅仅显示预分配的人脸数 + if (faceNum > maxDectNum) + { + faceNum = maxDectNum; + } + BDFaceBBox[] info = new BDFaceBBox[faceNum]; + for (int index = 0; index < faceNum; index++) + { + + IntPtr ptr = new IntPtr(); + if (8 == IntPtr.Size) + { + ptr = (IntPtr)(ptT.ToInt64() + sizeTrack * index); + } + else if (4 == IntPtr.Size) + { + ptr = (IntPtr)(ptT.ToInt32() + sizeTrack * index); + } + + info[index] = (BDFaceBBox)Marshal.PtrToStructure(ptr, typeof(BDFaceBBox)); + + //// 索引值 + //Console.WriteLine("detect index is:{0}", info[index].index); + //// 置信度 + //Console.WriteLine("detect score is:{0}", info[index].score); + //// 角度 + //Console.WriteLine("detect mAngle is:{0}", info[index].angle); + //// 人脸宽度 + //Console.WriteLine("detect mWidth is:{0}", info[index].width); + //// 中心点X,Y坐标 + //Console.WriteLine("detect mCenter_x is:{0}", info[index].center_x); + //Console.WriteLine("detect mCenter_y is:{0}", info[index].center_y); + } + Marshal.FreeHGlobal(ptT); + info = info.Where(p => p.score > ComParameters.Parameters._miniThreshold).ToArray(); + return info; + } + else + { + return _emptyBox; + } + + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("人脸检测失败" + ex.Message); + return _emptyBox; + } + } + + /// + /// 获取人脸属性值 + /// + /// + /// + /// + private BDFaceAttribute[] GetFaceAttr(Mat mat, int maxDectNum) + { + try + { + int size = Marshal.SizeOf(typeof(BDFaceAttribute)); + IntPtr ptT = Marshal.AllocHGlobal(size * maxDectNum); + int faceNum = face_attr(ptT, mat.CvPtr); + if (faceNum > 0) + { + if (faceNum > maxDectNum) + { + faceNum = maxDectNum; + } + BDFaceAttribute[] attr_info = new BDFaceAttribute[faceNum]; + for (int index = 0; index < faceNum; index++) + { + IntPtr ptr = new IntPtr(); + if (8 == IntPtr.Size) + { + ptr = (IntPtr)(ptT.ToInt64() + size * index); + } + else if (4 == IntPtr.Size) + { + ptr = (IntPtr)(ptT.ToInt32() + size * index); + } + + attr_info[index] = (BDFaceAttribute)Marshal.PtrToStructure(ptr, typeof(BDFaceAttribute)); + //// 年龄 + //Console.WriteLine("age is {0}:", attr_info[index].age); + //// 种族 + //Console.WriteLine("race is:{0}", attr_info[index].race); + //// 表情 + //Console.WriteLine("emotion is:{0}", attr_info[index].emotion); + //// 戴眼镜状态 + //Console.WriteLine("glasses is:{0}", attr_info[index].glasses); + //// 性别 + //Console.WriteLine("gender is:{0}", attr_info[index].gender); + } + Marshal.FreeHGlobal(ptT); + return attr_info; + } + else + { + return _emptyAttr; + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("获取人脸属性值失败" + ex.Message); + return _emptyAttr; + } + } + + + /// + /// 获取人脸特征值 + /// + /// + /// + /// + private BDFaceTrackInfo[] GetFaceTrac(Mat mat, int maxDectNum) + { + try + { + int sizeTrack = Marshal.SizeOf(typeof(BDFaceTrackInfo)); + IntPtr ptT = Marshal.AllocHGlobal(sizeTrack * maxDectNum); + // faceNum为返回的检测到的人脸个数 + var faceNum = track(ptT, mat.CvPtr, _trackType); + if (faceNum > 0) + { + // 因为需预分配内存,所以返回的人脸数若大于预先分配的内存数,则仅仅显示预分配的人脸数 + if (faceNum > maxDectNum) + { + faceNum = maxDectNum; + } + BDFaceTrackInfo[] track_info = new BDFaceTrackInfo[faceNum]; + for (int i = 0; i < faceNum; i++) + { + track_info[i] = new BDFaceTrackInfo(); + track_info[i].box = new BDFaceBBox(); + track_info[i].box.score = 0; + track_info[i].box.width = 0; + track_info[i].landmark.data = new float[144]; + track_info[i].face_id = 0; + } + + for (int index = 0; index < faceNum; index++) + { + + IntPtr ptr = new IntPtr(); + if (8 == IntPtr.Size) + { + ptr = (IntPtr)(ptT.ToInt64() + sizeTrack * index); + } + else if (4 == IntPtr.Size) + { + ptr = (IntPtr)(ptT.ToInt32() + sizeTrack * index); + } + + track_info[index] = (BDFaceTrackInfo)Marshal.PtrToStructure(ptr, typeof(BDFaceTrackInfo)); + //Console.WriteLine("track face_id is {0}:", track_info[index].face_id); + //Console.WriteLine("track landmarks is:"); + + //for(int i = 0; i < 144; i++) + //{ + // Console.WriteLine("lanmark data is {0}:", track_info[index].landmark.data[i]); + //} + //Console.WriteLine("track landmarks score is:{0}", track_info[index].landmark.score); + //Console.WriteLine("track landmarks index is:{0}", track_info[index].landmark.index); + + //// 索引值 + //Console.WriteLine("track score is:{0}", track_info[index].box.index); + //// 置信度 + //Console.WriteLine("track score is:{0}", track_info[index].box.score); + //// 角度 + //Console.WriteLine("track mAngle is:{0}", track_info[index].box.angle); + //// 人脸宽度 + //Console.WriteLine("track mWidth is:{0}", track_info[index].box.width); + //// 中心点X,Y坐标 + //Console.WriteLine("track mCenter_x is:{0}", track_info[index].box.center_x); + //Console.WriteLine("track mCenter_y is:{0}", track_info[index].box.center_y); + } + track_info = track_info.Where(p => p.box.score > ComParameters.Parameters._miniThreshold).ToArray(); + //track_info = track_info.Where(p => p.landmark.score > ComParameters.Parameters._miniThreshold).ToArray(); + Marshal.FreeHGlobal(ptT); + return track_info; + } + else + { + return _emptyTrack; + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("获取人脸特征值失败" + ex.Message); + return _emptyTrack; + } + } + /// + /// 清除人脸追踪历史 + /// + public void ClearTrack() + { + clear_track_history(_trackType); + } + + /// + /// 获取人脸检测属性值 + /// + /// 图像帧 + /// 最大检测人数 + /// 传出的检测值 + /// + private FaceDectData[] GetFaceInfoAttr(Mat mat, int maxDectNum) + { + var Info = DetectFace(mat, maxDectNum); + if (Info.Any()) + { + var attrInfo = GetFaceAttr(mat, maxDectNum); + var resu = Info.Select(p => new FaceDectData + { + index=p.index, + center_x= p.center_x, + center_y= p.center_y, + width=p.width, + height = p.height, + angle = p.angle, + score = p.score, + }).ToArray(); + for (int i = 0; i < Info.Length; i++) + { + resu[i].age = i < attrInfo.Length ? attrInfo[i].age : int.MaxValue; + resu[i].gender = i < attrInfo.Length ? attrInfo[i].gender : BDFaceGender.BDFACE_GENDER_MALE; + } + return resu; + } + return _emptyInfo; + } + + /// + /// usb摄像头实时人脸检测示例 + /// + public void USBVideoTract() + { + using (var window = new Window("face")) + using (VideoCapture cap = VideoCapture.FromCamera(ComParameters.Parameters._cameraIndex)) + { + if (!cap.IsOpened()) + { + Log.MyLog.WriteLogFile("打开摄像头失败!"); + return; + } + // Frame image buffer + Mat image = new Mat(); + // When the movie playback reaches end, Mat.data becomes NULL. + while (true) + { + try + { + //读取相机帧 + cap.Read(image); // same as cvQueryFrame + if (!image.Empty()) + { + FaceDectData? currentFace = null; + #region 推送流文件 + if ((ComParameters.Parameters._isLive || ComParameters.Parameters._isOpenLive) && null != image) + { + using (var newFrame = new Mat(image, new Rect(new Point(ComParameters.Parameters._liveX, ComParameters.Parameters._liveY), new Size(ComParameters.Parameters._liveWidth, ComParameters.Parameters._liveHeight)))) + { + try + { + var encodeBuff = newFrame.ImEncode(".jpg"); + var base64Str = Convert.ToBase64String(encodeBuff); + var faceData = new FaceSocketModel + { + age = 0, + genderMale = "", + vipId = "", + faceID = "", + carNo = "", + faceImage = base64Str + }; + //获取特征属性值 + var speInfos = GetFaceInfoAttr(newFrame, 1); + //bool isSuccess = false; + if (speInfos != null && speInfos.Any()) + { + faceData.age = speInfos[0].age; + faceData.genderMale = speInfos[0].gender == BDFaceGender.BDFACE_GENDER_MALE ? "男" : "女"; + + #region 不需要的逻辑 + //foreach (var item in speInfos) + //{ + // //isSuccess = true; + // //var vipId = string.Empty; + // //var faceID = string.Empty; + // //var carNo = string.Empty; + + // //if (!string.IsNullOrEmpty(ComParameters.Parameters._kioskUrl) && !_isSendLive) + // //{ + // // _isSendLive = true; + + // // var dic = HttpComm.Http.UploadImage("Face=" + base64Str); + // // if (dic != null) + // // { + // // vipId = dic.ContainsKey("vipId") && dic["vipId"] == null ? "" : dic["vipId"].ToString(); + // // faceID = dic.ContainsKey("faceID") && dic["faceID"] == null ? "" : dic["faceID"].ToString(); + // // carNo = dic.ContainsKey("carNo") && dic["carNo"] == null ? "" : dic["carNo"].ToString(); + // // ComParameters.Parameters._isLive = false; + // // } + // // else + // // { + // // _isSendLive = false; + // // } + // //} + // //var faceData = new FaceSocketModel + // //{ + // // age = item.age, + // // vipId = vipId, + // // faceID = faceID, + // // carNo = carNo, + // // genderMale = item.gender == BDFaceGender.BDFACE_GENDER_MALE ? "男" : "女", + // // faceImage = base64Str + // //}; + // if (!ComParameters.Parameters._isLive) + // { + // //_isSendLive = false; + // WebSocketManager.WebSocket.PushImage(JsonConvert.SerializeObject(faceData)); + // } + //} + #endregion + } + #region 不需要的逻辑 + //if (!isSuccess) + //{ + // var faceData = new FaceSocketModel + // { + // age = 0, + // genderMale = "", + // vipId = "", + // faceID = "", + // carNo = "", + // faceImage = base64Str + // }; + // WebSocketManager.WebSocket.PushImage(JsonConvert.SerializeObject(faceData)); + //} + #endregion + //推送视频流 + WebSocketManager.WebSocket.PushImage(JsonConvert.SerializeObject(faceData)); + } + catch (Exception e) + { + Log.MyLog.WriteLogFile("推送流文件异常:" + e.Message); + } + } + } + #endregion + #region 人脸检测 + //获取特征属性值 + var attrInfo = GetFaceInfoAttr(image, ComParameters.Parameters._maxDectNum); + //近期已离开人脸KeyList + var hasLeaveList = _faceDic.Keys.ToList(); + if (attrInfo.Any())//当前帧检测出人脸 + { + //百度Sdk特征值和属性值已排过序越优越前 + currentFace = attrInfo.First(); + //所有人脸结果 + foreach (var item in attrInfo) + { + //新增进近期人脸字典 + if (!_faceDic.ContainsKey(item.index)) + { + //加入近期人脸字典 + _faceDic.Add(item.index, item); + //加入人脸进入字典 + _faceEnterDic.Add(item.index, DateTime.Now); + //通知导视 人员进入 + WebSocketManager.WebSocket.PeopleEnter(); + } + else + { + hasLeaveList.Remove(item.index); + } + //如果人员离开表有这个人 但这一帧这个人又出现了 则这个人的离开时间应该是暂定的 + if (_faceLeaveDic.ContainsKey(item.index) && _faceLeaveDic[item.index].HasValue) + { + _faceLeaveDic[item.index] = null; + } + } + //首次进入toBeRemoveList 应该是空的不走此逻辑 + //前后帧检测到的人不一样时 走此逻辑 + foreach (var item in hasLeaveList) + { + if (!_faceLeaveDic.ContainsKey(item)) + { + _faceLeaveDic.Add(item, DateTime.Now); + } + else if (!_faceLeaveDic[item].HasValue) + { + _faceLeaveDic[item] = DateTime.Now; + } + //当这个人离开了超过两秒 + else if (_faceLeaveDic[item].Value.AddSeconds(2) <= DateTime.Now) + { + //上传这个人前后一共停留的时间和人脸特征数据 + AddUploadFace(_faceDic[item].age.ToString(), _faceDic[item].gender == BDFaceGender.BDFACE_GENDER_MALE ? "男" : "女", _faceEnterDic[item]); + //从人脸特征表中删除此人脸 + _faceDic.Remove(item); + //从人员进入表中删除此人脸 + _faceEnterDic.Remove(item); + //从人员离开表中删除此人脸 + _faceLeaveDic.Remove(item); + if (_masterFace.HasValue && _masterFace.Value.index == item) + { + _masterFace = null; + //通知导视人员离开 + WebSocketManager.WebSocket.PeopleLeave(); + } + } + } + //如果主人脸有值且近期人脸List中不含此主人脸 + if (_masterFace.HasValue && !_faceDic.ContainsKey(_masterFace.Value.index)) + { + _masterFace = null; + //通知导视人员离开 + //还没做 得做 + } + //如果主人脸为空且这个人停留超过两秒 则会进入此逻辑 + if (!_masterFace.HasValue && currentFace.HasValue && _faceEnterDic[currentFace.Value.index].AddSeconds(2) <= DateTime.Now) + { + _masterFace = currentFace; + //源代码调了SendHttpForKiosk 空方法 + + #region 人脸识别 + FaceContact(image, currentFace.Value); + #endregion + } + } + else//未检测出人脸(所有人都离开了) + { + foreach (var item in hasLeaveList) + { + //记录人员离开表 + if (!_faceLeaveDic.ContainsKey(item)) + { + _faceLeaveDic.Add(item, DateTime.Now); + } + else if (!_faceLeaveDic[item].HasValue) + { + _faceLeaveDic[item] = DateTime.Now; + } + else if (_faceLeaveDic[item].Value.AddSeconds(2) <= DateTime.Now) + { + //上传这个人前后一共停留的时间和人脸特征数据 + AddUploadFace(_faceDic[item].age.ToString(), _faceDic[item].gender == BDFaceGender.BDFACE_GENDER_MALE ? "男" : "女", _faceEnterDic[item]); + //从人脸特征表中删除此人脸 + _faceDic.Remove(item); + //从人员进入表中删除此人脸 + _faceEnterDic.Remove(item); + //从人员离开表中删除此人脸 + _faceLeaveDic.Remove(item); + } + } + if (_masterFace.HasValue && !_faceDic.ContainsKey(_masterFace.Value.index)) + { + _masterFace = null; + //通知导视人员离开 + WebSocketManager.WebSocket.PeopleLeave(); + } + } + #endregion + #region 画框 + try + { + //画人像框 + FaceDraw.draw_rects(ref image, attrInfo.Length, attrInfo); + //展示 + window.ShowImage(image); + Cv2.WaitKey(1); + } + catch (Exception suex) + { + Log.MyLog.WriteLogFile("图像展示异常:" + suex.ToString(), "ToBitmapError"); + } + #endregion + } + else + { + //Console.WriteLine("mat is empty"); + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("usb摄像头实时人脸检测示例异常:" + ex.ToString(), "USBVideoTract"); + } + } + } + } + public void FaceContact(Mat mat, FaceDectData faceBox) + { + if (_faceDic.ContainsKey(faceBox.index)) + { + int x = Convert.ToInt32(faceBox.center_x - faceBox.width / 2.0); + int y = Convert.ToInt32(faceBox.center_y - faceBox.height / 2.0); + int w = Convert.ToInt32(faceBox.width); + int h = Convert.ToInt32(faceBox.height); + try + { + using (var image = new Mat(mat, new Rect(new Point(x, y), new Size(w, h)))) + { + var encodeBuff = image.ImEncode(".jpg"); + var base64Str = Convert.ToBase64String(encodeBuff); + var gender = faceBox.gender == BDFaceGender.BDFACE_GENDER_MALE ? 1 : 0; + var param = $"Face={base64Str}&ip={SystemManager.GetLocalIp()}&Age={faceBox.age}&GenderMale={gender}"; + if (!string.IsNullOrEmpty(ComParameters.Parameters._method)) + { + param += $"&method={ComParameters.Parameters._method}"; + ComParameters.Parameters._method = null; + } + HttpComm.Http.UploadFace(param); + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("上传人脸数据失败:" + ex.Message); + } + } + } + public void UploadTheRestFace() + { + foreach (var item in _faceDic) + { + var stopTime = Convert.ToInt32((DateTime.Now - _faceEnterDic[item.Key]).TotalSeconds); + if(stopTime > 0) + { + ComParameters.Parameters._faceToUploadList.Add(new FaceDataModel + { + Age = item.Value.age.ToString(), + BeginTime = _faceEnterDic[item.Key], + EndTime = DateTime.Now, + GenderMale = item.Value.gender == BDFaceGender.BDFACE_GENDER_MALE ? "男" : "女", + StopTime = stopTime, + IP = ComParameters.Parameters._ipAddress, + }); + } + } + if (ComParameters.Parameters._faceToUploadList.Any()) + { + HttpComm.Http.UploadFaceList(); + } + } + /// + /// 增加人脸统计数据 + /// + /// + /// 男/女 + /// + private void AddUploadFace(string age, string gender, DateTime enterTime) + { + try + { + var stopTime = Convert.ToInt32((DateTime.Now - enterTime).TotalSeconds); + if (stopTime > 1) + { + ComParameters.Parameters._faceToUploadList.Add(new FaceDataModel + { + Age = age, + BeginTime = enterTime, + EndTime = DateTime.Now, + GenderMale = gender, + StopTime = stopTime, + IP = ComParameters.Parameters._ipAddress, + }); + } + if (ComParameters.Parameters._faceToUploadList.Count >= 5) + { + HttpComm.Http.UploadFaceList(); + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("增加人脸统计数据异常:" + ex.Message); + } + } + #endregion + } +} diff --git a/FaceDetect/Common/ComParameters.cs b/FaceDetect/Common/ComParameters.cs new file mode 100644 index 0000000..dd09de3 --- /dev/null +++ b/FaceDetect/Common/ComParameters.cs @@ -0,0 +1,135 @@ +using FaceDetect.Model; +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Common +{ + public class ComParameters + { + /// + /// 公共参数 + /// + public static ComParameters Parameters + { + get + { + if (_par == null) + _par = new ComParameters(); + return _par; + } + } + + private static ComParameters _par; + #region 公共参数 + /// + /// 默认电脑自带摄像头,device可能为0,若外接usb摄像头,则device可能为1。 + /// + public int _cameraIndex; + /// + /// 对比阈值,超过当前值才合格(compare 使用0-100) + /// + public int _threshold; + /// + /// 对比阈值,超过当前值才合格(track和attr使用0-1) + /// + public double _miniThreshold; + /// + /// 百度人脸Sdk最大检测数 + /// + public int _maxDectNum; + /// + /// 程序基目录 + /// + public string _baseDir; + /// + /// Http地址(大后台) + /// + public string _httpUrl; + /// + /// Http地址(小后台) + /// + public string _kioskUrl; + /// + /// 待上传的人脸统计数据 + /// + public List _faceToUploadList; + /// + /// 本机ip + /// + public string _ipAddress; + ///// + ///// AllWebsocket地址 + ///// + //public string _allWSServer; + /// + /// 人脸识别Websocket地址 + /// + public string _faceWSServer; + /// + /// 直播Websocket地址 + /// + public string _liveWSServer; + /// + /// 视频流是否开启 + /// + public bool _isLive = false; + /// + /// 视频流是否需要常开 + /// + public bool _needAlive = false; + /// + /// 是否需要传递视频流 + /// + public bool _isOpenLive = false; + /// + /// 视频流像素X位 + /// + public int _liveX; + /// + /// 视频流像素Y位 + /// + public int _liveY; + /// + /// 视频流宽度 + /// + public int _liveWidth; + /// + /// 视频流高度 + /// + public int _liveHeight; + /// + /// 当前人脸识别后请求小后台传递的方法参数 + /// + public string _method; + #endregion + + public ComParameters() + { + #region 参数初始化 + _cameraIndex = Convert.ToInt32(ConfigurationManager.AppSettings["CameraIndex"]); + _threshold = Convert.ToInt32(ConfigurationManager.AppSettings["Threshold"]); + _maxDectNum = Convert.ToInt32(ConfigurationManager.AppSettings["MaxDectNum"]); + _httpUrl = ConfigurationManager.AppSettings["HttpUrl"]; + _kioskUrl = ConfigurationManager.AppSettings["KioskUrl"]; + //_allWSServer = ConfigurationManager.AppSettings["WebsocketForAll"]; + _faceWSServer = ConfigurationManager.AppSettings["WebsocketForFace"]; + _liveWSServer = ConfigurationManager.AppSettings["WebsocketForLive"]; + _needAlive = ConfigurationManager.AppSettings["NeedAlive"] == "1" ? true : false; + int.TryParse(ConfigurationManager.AppSettings["LiveX"], out _liveX); + int.TryParse(ConfigurationManager.AppSettings["LiveY"], out _liveY); + int.TryParse(ConfigurationManager.AppSettings["LiveWidth"], out _liveWidth); + int.TryParse(ConfigurationManager.AppSettings["LiveHeight"], out _liveHeight); + + _method = ""; + _miniThreshold = (double)_threshold / (double)100; + _baseDir = AppDomain.CurrentDomain.BaseDirectory; + _faceToUploadList = new List(); + _ipAddress = SystemManager.GetLocalIp(); + #endregion + } + } +} diff --git a/FaceDetect/Common/FaceDraw.cs b/FaceDetect/Common/FaceDraw.cs new file mode 100644 index 0000000..0206bd8 --- /dev/null +++ b/FaceDetect/Common/FaceDraw.cs @@ -0,0 +1,170 @@ +using OpenCvSharp; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using static FaceDetect.Common.BaiduFaceSdk; + +namespace FaceDetect.Common +{ + // 绘制类,画人脸框,画关键点等 + class FaceDraw + { + // 画人脸框 + public static int draw_rects(ref Mat img, int face_num, BDFaceBBox[] info) + { + if (face_num <= 0) + { + return 0; + } + Scalar color = new Scalar(0, 255, 0); + for (int i = 0; i < face_num; i++) + { + int x = Convert.ToInt32(info[i].center_x - info[i].width / 2.0); + int y = Convert.ToInt32(info[i].center_y - info[i].height / 2.0); + int w = Convert.ToInt32(info[i].width); + int h = Convert.ToInt32(info[i].height); + Rect rect = new Rect(x, y, w, h); + Cv2.Rectangle(img, rect, color); + } + return 0; + } + // 画人脸框 + public static int draw_rects(ref Mat img, int face_num, FaceDectData[] info) + { + if (face_num <= 0) + { + return 0; + } + Scalar color = new Scalar(0, 255, 0); + for (int i = 0; i < face_num; i++) + { + int x = Convert.ToInt32(info[i].center_x - info[i].width / 2.0); + int y = Convert.ToInt32(info[i].center_y - info[i].height / 2.0); + int w = Convert.ToInt32(info[i].width); + int h = Convert.ToInt32(info[i].height); + Rect rect = new Rect(x, y, w, h); + Cv2.Rectangle(img, rect, color); + } + return 0; + } + // 画人脸框 + public static int draw_rects(ref Mat img, int face_num, BDFaceTrackInfo[] track_info) + { + if (face_num <= 0) + { + return 0; + } + Scalar color = new Scalar(0, 255, 0); + for (int i = 0; i < face_num; i++) + { + int x = Convert.ToInt32(track_info[i].box.center_x - track_info[i].box.width / 2.0); + int y = Convert.ToInt32(track_info[i].box.center_y - track_info[i].box.height / 2.0); + int w = Convert.ToInt32(track_info[i].box.width); + int h = Convert.ToInt32(track_info[i].box.height); + Rect rect = new Rect(x, y, w, h); + Cv2.Rectangle(img, rect, color); + } + return 0; + } + // 画人脸关键点 + public static int draw_shape(ref Mat img, int face_num, BDFaceTrackInfo[] track_info) + { + if (face_num <= 0) + { + return 0; + } + int face_id = 0; + Scalar color = new Scalar(0, 255, 255); + Scalar color2 = new Scalar(0, 0, 255); + for (int i = 0; i < face_num; ++i) + { + int point_size = track_info[i].landmark.size / 2; + int radius = 2; + face_id = track_info[i].face_id; + for (int j = 0; j < point_size; ++j) + { + Cv2.Circle(img, (int)track_info[i].landmark.data[j * 2], (int)track_info[i].landmark.data[j * 2 + 1], radius, color); + } + if (point_size == 72) + { + const int components = 9; + int[] comp1 = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; + int[] comp2 = { 13, 14, 15, 16, 17, 18, 19, 20, 13, 21 }; + int[] comp3 = { 22, 23, 24, 25, 26, 27, 28, 29, 22 }; + int[] comp4 = { 30, 31, 32, 33, 34, 35, 36, 37, 30, 38 }; + int[] comp5 = { 39, 40, 41, 42, 43, 44, 45, 46, 39 }; + int[] comp6 = { 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 47 }; + int[] comp7 = { 51, 57, 52 }; + int[] comp8 = { 58, 59, 60, 61, 62, 63, 64, 65, 58 }; + int[] comp9 = { 58, 66, 67, 68, 62, 69, 70, 71, 58 }; + int[][] idx = { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9 }; + int[] npoints = { 13, 10, 9, 10, 9, 11, 3, 9, 9 }; + + for (int m = 0; m < components; ++m) + { + for (int n = 0; n < npoints[m] - 1; ++n) + { + Point p1 = new Point(track_info[i].landmark.data[idx[m][n] * 2], track_info[i].landmark.data[idx[m][n] * 2 + 1]); + Point p2 = new Point(track_info[i].landmark.data[idx[m][n + 1] * 2], track_info[i].landmark.data[idx[m][n + 1] * 2 + 1]); + Cv2.Line(img, p1, p2, color2); + } + } + } + string s_face_id = face_id.ToString(); + double font_scale = 2; + Point pos = new Point(track_info[i].box.center_x, track_info[i].box.center_y); + Cv2.PutText(img, s_face_id, pos, HersheyFonts.HersheyComplex, font_scale, new Scalar(0, 255, 255)); + } + + return 0; + } + + // 画人脸关键点 + public static int draw_landmark(ref Mat img, int face_num, BDFaceLandmark[] landmark) + { + if (face_num <= 0) + { + return 0; + } + Scalar color = new Scalar(0, 255, 255); + Scalar color2 = new Scalar(0, 0, 255); + for (int i = 0; i < face_num; ++i) + { + int point_size = landmark[i].size / 2; + int radius = 2; + for (int j = 0; j < point_size; ++j) + { + Cv2.Circle(img, (int)landmark[i].data[j * 2], (int)landmark[i].data[j * 2 + 1], radius, color); + } + if (point_size == 72) + { + const int components = 9; + int[] comp1 = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }; + int[] comp2 = { 13, 14, 15, 16, 17, 18, 19, 20, 13, 21 }; + int[] comp3 = { 22, 23, 24, 25, 26, 27, 28, 29, 22 }; + int[] comp4 = { 30, 31, 32, 33, 34, 35, 36, 37, 30, 38 }; + int[] comp5 = { 39, 40, 41, 42, 43, 44, 45, 46, 39 }; + int[] comp6 = { 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 47 }; + int[] comp7 = { 51, 57, 52 }; + int[] comp8 = { 58, 59, 60, 61, 62, 63, 64, 65, 58 }; + int[] comp9 = { 58, 66, 67, 68, 62, 69, 70, 71, 58 }; + int[][] idx = { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9 }; + int[] npoints = { 13, 10, 9, 10, 9, 11, 3, 9, 9 }; + + for (int m = 0; m < components; ++m) + { + for (int n = 0; n < npoints[m] - 1; ++n) + { + Point p1 = new Point(landmark[i].data[idx[m][n] * 2], landmark[i].data[idx[m][n] * 2 + 1]); + Point p2 = new Point(landmark[i].data[idx[m][n + 1] * 2], landmark[i].data[idx[m][n + 1] * 2 + 1]); + Cv2.Line(img, p1, p2, color2); + } + } + } + } + return 0; + } + } +} diff --git a/FaceDetect/Common/FileManage.cs b/FaceDetect/Common/FileManage.cs new file mode 100644 index 0000000..45448e5 --- /dev/null +++ b/FaceDetect/Common/FileManage.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Common +{ + public class FileManage + { + /// + /// 写Json文件 + /// + /// + /// + public static void WriteJsonFile(string path, string jsonContents) + { + File.WriteAllText(path, jsonContents, System.Text.Encoding.UTF8); + } + /// + /// 读Json文件 + /// + /// + /// + public static string ReadJsonFile(string path) + { + var json = string.Empty; + if (File.Exists(path)) + { + using (FileStream fs = new FileStream(path, FileMode.OpenOrCreate, System.IO.FileAccess.Read, FileShare.ReadWrite)) + { + using (StreamReader sr = new StreamReader(fs, Encoding.UTF8)) + { + json = sr.ReadToEnd(); + } + } + } + return json; + } + } +} diff --git a/FaceDetect/Common/HttpComm.cs b/FaceDetect/Common/HttpComm.cs new file mode 100644 index 0000000..6eb1b9a --- /dev/null +++ b/FaceDetect/Common/HttpComm.cs @@ -0,0 +1,382 @@ +using FaceDetect.Model; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Common +{ + public class HttpComm + { + public static HttpComm Http + { + get + { + if (_http == null) + _http = new HttpComm(); + return _http; + } + } + + private static HttpComm _http; + private string _httpUrl; + private HttpComm() + { + _httpUrl = ComParameters.Parameters._httpUrl; + } + #region 基本代码 + public string Get(string Url, string cookies = null) + { + try + { + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url); + request.Method = "GET"; + if (cookies != null) + request.Headers.Add("Cookie", cookies); + request.ContentType = "application/x-www-form-urlencoded"; + HttpWebResponse response = (HttpWebResponse)request.GetResponse(); + string encoding = response.ContentEncoding; + if (encoding == null || encoding.Length < 1) + { + encoding = "UTF-8"; //默认编码 + } + StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(encoding)); + string retString = reader.ReadToEnd(); + return retString; + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile(ex.ToString()); + return "Error"; + } + } + private void init_Request(ref HttpWebRequest request) + { + request.Accept = "text/json,*/*;q=0.5"; + request.Headers.Add("Accept-Charset", "utf-8;q=0.7,*;q=0.7"); + request.Headers.Add("Accept-Encoding", "gzip, deflate, x-gzip, identity; q=0.9"); + request.AutomaticDecompression = DecompressionMethods.GZip; + request.Timeout = 60000; + } + + public string Post(string url, string data, string contentType = "application/x-www-form-urlencoded; charset=utf-8", Dictionary headers = null) + { + try + { + var request = (HttpWebRequest)WebRequest.Create(url); + { + string retval; + init_Request(ref request); + request.Method = "POST"; + request.ContentType = contentType; + if (headers != null && headers.Count > 0) + { + foreach (var h in headers) + { + request.Headers.Add(h.Key, h.Value); + } + } + var bytes = System.Text.Encoding.UTF8.GetBytes(data); + request.ContentLength = bytes.Length; + using (var stream = request.GetRequestStream()) + { + stream.Write(bytes, 0, bytes.Length); + } + using (var response = request.GetResponse()) + { + using (var reader = new System.IO.StreamReader(response.GetResponseStream() ?? throw new InvalidOperationException())) + { + retval = reader.ReadToEnd(); + } + } + return retval; + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile(ex.ToString()); + return "Error"; + } + } + /// + /// 下载文件 + /// + /// 下载地址 + /// 本地文件名 + /// 文件夹完整路径 + /// 是否覆盖同名文件 + /// + private string DownLoadFile(string fileUrl, string localFileName, string folderPath, bool cover = false) + { + var filePath = ""; + try + { + if (!Directory.Exists(folderPath)) + { + Directory.CreateDirectory(folderPath); + } + if (File.Exists(folderPath + "/" + localFileName)) + { + if (!cover) + { + return filePath; + } + else + { + File.Delete(folderPath + "/" + localFileName); + } + } + if (File.Exists(folderPath + "/" + localFileName + ".temp")) + { + File.Delete(folderPath + "/" + localFileName + ".temp"); + } + using (Stream fileStream = new FileStream(folderPath + "/" + localFileName + ".temp", FileMode.OpenOrCreate)) + { + try + { + HttpWebRequest request = (HttpWebRequest)WebRequest.Create(fileUrl); + request.AddRange(fileStream.Length); + + HttpWebResponse respone = (HttpWebResponse)request.GetResponse(); + using (Stream netStream = respone.GetResponseStream()) + { + long totalDownloadedByte = 0; + byte[] read = new byte[1024]; + int realReadLen = netStream.Read(read, 0, read.Length); + while (realReadLen > 0) + { + totalDownloadedByte = realReadLen + totalDownloadedByte; + + fileStream.Write(read, 0, realReadLen); + realReadLen = netStream.Read(read, 0, read.Length); + + //System.Windows.Forms.Application.DoEvents(); + } + netStream.Close(); + } + if (fileStream.Length != respone.ContentLength) + { + Log.MyLog.WriteLogFile("文件未下载完毕"); + } + fileStream.Close(); + Log.MyLog.WriteLogFile("下载完成" + folderPath + "/" + localFileName, "FileDownload"); + File.Move(folderPath + "/" + localFileName + ".temp", folderPath + "/" + localFileName); + filePath = folderPath + "/" + localFileName; + + + //var fileHash = GetMD5HashFromFile(folderPath + "/" + localFileName); + //if (fileHash != hash) + //{ + // log.WriteLogFile("localFile " + fileHash + " getHash:" + hash, "exelog"); + // File.Delete(folderPath + "/" + localFileName); + // log.WriteLogFile("FileHash对比不一致,须删除重新下载" + folderPath + "/" + localFileName, "exelog"); + // return false; + //} + + } + catch (Exception ex) + { + fileStream.Close(); + Log.MyLog.WriteLogFile("下载失败" + folderPath + "/" + localFileName + ex.ToString()); + File.Delete(folderPath + "/" + localFileName + ".temp"); + return filePath; + } + } + return filePath; + } + catch (Exception e) + { + Log.MyLog.WriteLogFile(e.ToString()); + return filePath; + } + } + + /// + /// 表单上传 + /// + /// + /// + /// + public string UploadFile(string url, string filePath, Dictionary formDatas, string contentType = "multipart/form-data;") + { + var returnValue = ""; + // 时间戳,用做boundary + string timeStamp = DateTime.Now.Ticks.ToString("x"); + + //根据uri创建HttpWebRequest对象 + HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(new Uri(url)); + httpReq.Method = "POST"; + httpReq.AllowWriteStreamBuffering = false; //对发送的数据不使用缓存 + httpReq.Timeout = 300000; //设置获得响应的超时时间(300秒) + httpReq.ContentType = "multipart/form-data; boundary=" + timeStamp; + + //读取file文件 + FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read); + BinaryReader binaryReader = new BinaryReader(fileStream); + + //表单信息 + string boundary = "--" + timeStamp; + string form = ""; + string formFormat = boundary + "\r\nContent-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}\r\n"; + string formEnd = boundary + "\r\nContent-Disposition: form-data; name=\"{0}\"; filename=\"{1}\";\r\nContent-Type:application/octet-stream\r\n\r\n"; + foreach (var pair in formDatas) + { + form += string.Format(formFormat, pair.Key, pair.Value); + } + form += string.Format(formEnd, "file", Path.GetFileName(filePath)); + byte[] postHeaderBytes = Encoding.UTF8.GetBytes(form); + + //结束边界 + byte[] boundaryBytes = Encoding.ASCII.GetBytes("\r\n--" + timeStamp + "--\r\n"); + long length = fileStream.Length + postHeaderBytes.Length + boundaryBytes.Length; + httpReq.ContentLength = length; //请求内容长度 + + try + { + //每次上传4k + int bufferLength = 4096; + byte[] buffer = new byte[bufferLength]; + + //已上传的字节数 + long offset = 0; + int size = binaryReader.Read(buffer, 0, bufferLength); + Stream postStream = httpReq.GetRequestStream(); + + //发送请求头部消息 + postStream.Write(postHeaderBytes, 0, postHeaderBytes.Length); + + while (size > 0) + { + postStream.Write(buffer, 0, size); + offset += size; + size = binaryReader.Read(buffer, 0, bufferLength); + } + + //添加尾部边界 + postStream.Write(boundaryBytes, 0, boundaryBytes.Length); + postStream.Close(); + + //获取服务器端的响应 + using (HttpWebResponse response = (HttpWebResponse)httpReq.GetResponse()) + { + Stream receiveStream = response.GetResponseStream(); + StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8); + returnValue = readStream.ReadToEnd(); + response.Close(); + readStream.Close(); + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("文件传输异常: " + ex.ToString()); + } + finally + { + fileStream.Close(); + binaryReader.Close(); + } + return returnValue; + } + #endregion + #region api + #region 小后台 KioskUrl + + #endregion + #region 大后台 Http + + #endregion + /// + /// 上传人脸统计数据 + /// + public void UploadFaceList() + { + try + { + var param = JsonConvert.SerializeObject(ComParameters.Parameters._faceToUploadList); + var url = _httpUrl + "/api/Face/UploadFace"; + var res = Post(url, param, "application/json;charset=UTF-8"); + if (!string.IsNullOrEmpty(res) && res.Contains("\"code\"")) + { + var jo = JObject.Parse(res); + var code = jo.Value("code"); + if (code == "200") + { + ComParameters.Parameters._faceToUploadList.Clear(); + } + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("上传人脸统计数据List异常:" + ex.Message, "HttpError"); + } + } + /// + /// 上传图片 + /// + /// + public void UploadFace(string param) + { + try + { + var url = ComParameters.Parameters._kioskUrl + "/api/Face/UpLoadFace"; + var res = Post(url, param); + if (!string.IsNullOrEmpty(res) && res.Contains("\"code\"")) + { + var jo = JObject.Parse(res); + var code = jo.Value("code"); + if (code == "200") + { + var data = jo.Value("data"); + if (data.HasValues) + { + WebSocketManager.WebSocket.PushFaceData(data.ToString(Newtonsoft.Json.Formatting.None)); + } + if (param.Contains("&method=")) + { + ComParameters.Parameters._isOpenLive = false; + WebSocketManager.WebSocket.PushCloseLive(); + } + } + } + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("上传图片异常:" + ex.Message, "HttpError"); + } + } + ///// + ///// 上传图片 + ///// + //public Dictionary UploadImage(string param) + //{ + // try + // { + // var url = ComParameters.Parameters._kioskUrl + "/Api/MemberCenter/FaceSearch"; + // var res = Post(url, param, "application/json;charset=UTF-8"); + // if (!string.IsNullOrEmpty(res) && res.Contains("\"code\"")) + // { + // var jo = JObject.Parse(res); + // var code = jo.Value("code"); + // if (code == "200") + // { + // var data = jo.Value("data"); + // var result = data.ToObject>(); + // return result; + // } + // } + // return null; + // } + // catch (Exception ex) + // { + // Log.MyLog.WriteLogFile("上传人脸统计数据List异常:" + ex.Message, "HttpError"); + // return null; + // } + //} + #endregion + } +} diff --git a/FaceDetect/Common/Log.cs b/FaceDetect/Common/Log.cs new file mode 100644 index 0000000..2ff6501 --- /dev/null +++ b/FaceDetect/Common/Log.cs @@ -0,0 +1,184 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Common +{ + public class Log + { + public static Log MyLog + { + get + { + if (_log == null) + _log = new Log(); + return _log; + } + } + private static Log _log = new Log(); + + private Log() { } + /**/ + /// + /// 写入日志文件 + /// + /// + public void WriteLogFile(string input, string strfileName = "AppError") + { + try + { + /**/ + ///指定日志文件的目录 + strfileName = strfileName + DateTime.Now.ToString("yyyy-MM-dd"); + string fpath = System.AppDomain.CurrentDomain.BaseDirectory + "\\log\\" + DateTime.Now.ToString("yyyy-MM-dd") + "\\"; + if (!Directory.Exists(fpath)) + { + DirectoryInfo directoryInfo = new DirectoryInfo(fpath); + directoryInfo.Create(); + } + + string fname = System.AppDomain.CurrentDomain.BaseDirectory + "\\log\\" + DateTime.Now.ToString("yyyy-MM-dd") + "\\" + strfileName + ".txt"; + + /**/ + ///定义文件信息对象 + /// + FileInfo finfo = new FileInfo(fname); + if (!finfo.Exists) + { + FileStream fs = new FileStream(fname, FileMode.Create, FileAccess.Write); + //fs = File.Create(fname); + fs.Close(); + finfo = new FileInfo(fname); + } + /**/ + ///判断文件是否存在以及是否大于2K + if (finfo.Length > 1024 * 1024 * 10) + { + /**/ + ///文件超过10MB则重命名 + File.Move(System.AppDomain.CurrentDomain.BaseDirectory + "\\LogFile.txt", System.AppDomain.CurrentDomain.BaseDirectory + DateTime.Now.TimeOfDay + "\\LogFile.txt"); + /**/ + ///删除该文件 + //finfo.Delete(); + } + //finfo.AppendText(); + /**/ + ///创建只写文件流 + + using (FileStream fs = finfo.OpenWrite()) + { + /**/ + ///根据上面创建的文件流创建写数据流 + StreamWriter w = new StreamWriter(fs); + + /**/ + ///设置写数据流的起始位置为文件流的末尾 + w.BaseStream.Seek(0, SeekOrigin.End); + /**/ + ///写入“Log Entry : ” + w.Write("\n\rLog Entry : "); + /**/ + ///写入当前系统时间并换行 + w.Write("{0} {1} \n\r", DateTime.Now.ToLongTimeString(), + DateTime.Now.ToLongDateString()); + /**/ + ///写入日志内容并换行 + w.Write(input + "\n\r"); + /**/ + ///写入------------------------------------“并换行 + w.Write("------------------------------------\n\r"); + /**/ + ///清空缓冲区内容,并把缓冲区内容写入基础流 + w.Flush(); + /**/ + ///关闭写数据流 + w.Close(); + } + } + catch { } + + } + + /// + /// 删除 month 个月之前的 strFileName日志 + /// + /// + /// + public static void DeleteLogFile(string strFileName = "AppError", int month = 1) + { + try + { + string logPath = System.AppDomain.CurrentDomain.BaseDirectory + "\\log\\" + strFileName; + if (!Directory.Exists(logPath))//若文件夹不存在则返回 + return; + else + logPath += "\\"; + DirectoryInfo theFolder = new DirectoryInfo(@logPath); + FileInfo[] fileInfo = theFolder.GetFiles(); + foreach (FileInfo NextFile in fileInfo) //遍历文件 + { + DateTime dt1 = Convert.ToDateTime(NextFile.Name.Substring(strFileName.Length, NextFile.Name.Length - strFileName.Length - 4) + " 00:00:00"); + DateTime dt2 = DateTime.Now.AddMonths(-month); + if (dt1 < dt2) + { + NextFile.Delete(); + } + } + } + catch + { + } + } + + public void DeleteFiles(string fileName = "") + { + try + { + if (string.IsNullOrEmpty(fileName)) + fileName = System.AppDomain.CurrentDomain.BaseDirectory + "\\log"; + if (!Directory.Exists(fileName))//若文件夹不存在则返回 + return; + DirectoryInfo dir = new DirectoryInfo(fileName);//new DirectoryInfo(System.AppDomain.CurrentDomain.BaseDirectory + "\\log"); + //不是目录 + + if (dir == null) + return; + //DateTime DT = dir.CreationTime; + + FileSystemInfo[] files = dir.GetFileSystemInfos(); + for (int i = 0; i < files.Length; i++) + { + FileInfo file = files[i] as FileInfo; + //是文件 + if (file != null) + { + DateTime DT = file.CreationTime; + if (DateTime.Now.Month - DT.Month >= 1) + { + file.Delete(); + } + } + else + { + DirectoryInfo dir1 = files[i] as DirectoryInfo; + if (dir1 != null) + { + DateTime DT = dir1.CreationTime; + if (DateTime.Now.Month - DT.Month >= 1) + { + //dir1.Delete(); + System.IO.Directory.Delete(fileName + "\\" + dir1.Name, true); + } + } + } + } + } + catch + { + } + } + } +} diff --git a/FaceDetect/Common/SystemManager.cs b/FaceDetect/Common/SystemManager.cs new file mode 100644 index 0000000..2029464 --- /dev/null +++ b/FaceDetect/Common/SystemManager.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Common +{ + public class SystemManager + { + /// + /// 获取本地Ip + /// + /// + public static string GetLocalIp() + { + foreach (IPAddress _IPAddress in Dns.GetHostEntry(Dns.GetHostName()).AddressList) + { + if (_IPAddress.AddressFamily.ToString() == "InterNetwork") + { + return _IPAddress.ToString(); + } + } + return string.Empty; + } + } +} diff --git a/FaceDetect/Common/WebSocketManager.cs b/FaceDetect/Common/WebSocketManager.cs new file mode 100644 index 0000000..90cf088 --- /dev/null +++ b/FaceDetect/Common/WebSocketManager.cs @@ -0,0 +1,222 @@ +using Fleck; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Common +{ + public class WebSocketManager + { + public static WebSocketManager WebSocket + { + get + { + if (_websocket == null) + _websocket = new WebSocketManager(); + return _websocket; + } + } + private static WebSocketManager _websocket; + //public static List allSockets = new List(); + public static List liveSockets = new List(); + public static List faceSockets = new List(); + public static string noFaceModel = "{" + "\"faceID\" : \"\", \"isValid\" :false, \"beautyScore\" : 0, \"faceImage\": \"\", \"genderMale\" : \"\"" + "}"; + + #region AllWebSocket + ///// + ///// 打开AllWebSocket + ///// + //public void OpenSocketForAll() + //{ + // try + // { + // var server = new WebSocketServer(ComParameters.Parameters._allWSServer); + // server.Start(socket => + // { + // socket.OnOpen = () => //当建立Socket链接时执行此方法 + // { + // allSockets.Add(socket); + // }; + + // socket.OnClose = () =>// 当关闭Socket链接十执行此方法 + // { + // allSockets.Remove(socket); + // }; + + // socket.OnMessage = message =>// 接收客户端发送过来的信息 + // { + // switch (message) + // { + // case "face": + // { + // break; + // } + // case "": + // { + // break; + // } + // } + // }; + // }); + // } + // catch (Exception ex) + // { + // Log.MyLog.WriteLogFile("人脸Websocket开启异常:" + ex.Message, "FaceWebSocketError"); + // } + + //} + + //public void PushFaceData(string content) + //{ + // allSockets.ForEach(s => s.Send(content)); + //} + + #endregion + #region FaceWebSocket + /// + /// 打开FaceWebSocket + /// + public void OpenSocketForFace() + { + try + { + var server = new WebSocketServer(ComParameters.Parameters._faceWSServer); + server.Start(socket => + { + socket.OnOpen = () => //当建立Socket链接时执行此方法 + { + faceSockets.Add(socket); + }; + + socket.OnClose = () =>// 当关闭Socket链接十执行此方法 + { + faceSockets.Remove(socket); + }; + + socket.OnMessage = message =>// 接收客户端发送过来的信息 + { + switch (message) + { + case "relay": + { + BaiduFaceSdk.SDK._masterFace = null; + ComParameters.Parameters._method = "relay"; + break; + } + case "recommend": + { + BaiduFaceSdk.SDK._masterFace = null; + ComParameters.Parameters._method = "recommend"; + break; + } + } + }; + }); + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("人脸Websocket开启异常:" + ex.Message, "FaceWebSocketError"); + } + + } + + /// + /// 人脸摄像头通知导视有人进入 + /// + public void PeopleEnter() + { + faceSockets.ForEach(s => s.Send("richad")); + } + /// + /// 人员离开 + /// + public void PeopleLeave() + { + faceSockets.ForEach(s => s.Send(noFaceModel)); + } + /// + /// 通知导视已关闭视频流 + /// + public void PushCloseLive() + { + faceSockets.ForEach(s => s.Send("closelive")); + } + /// + /// 将小后台的返回值推送给导视 + /// + /// + public void PushFaceData(string content) + { + faceSockets.ForEach(s => s.Send(content)); + } + #endregion + #region LiveWebSocket + public void OpenSocketForLive() + { + try + { + var server = new WebSocketServer(ComParameters.Parameters._liveWSServer); + server.Start(socket => + { + socket.OnOpen = () => //当建立Socket链接时执行此方法 + { + if (ComParameters.Parameters._needAlive) + { + ComParameters.Parameters._isLive = true; + } + //var data = socket.ConnectionInfo; //通过data可以获得这个链接传递过来的Cookie信息,用来区分各个链接和用户之间的关系(如果需要后台主动推送信息到某个客户的时候,可以使用Cookie) + liveSockets.Add(socket); + }; + + socket.OnClose = () =>// 当关闭Socket链接十执行此方法 + { + ComParameters.Parameters._isLive = false; + //Console.WriteLine("Close!"); + liveSockets.Remove(socket); + }; + + socket.OnMessage = message =>// 接收客户端发送过来的信息 + { + switch (message) + { + case "openlive"://导视通知打开视频流 + { + ComParameters.Parameters._isOpenLive = true; + break; + } + case "closelive"://导视通知关闭视频流 + { + ComParameters.Parameters._isOpenLive = false; + break; + } + } + }; + }); + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("直播Websocket开启异常:" + ex.Message, "LiveWebSocketError"); + } + } + /// + /// 视频帧推送 + /// + /// + public void PushImage(string data) + { + try + { + liveSockets.ForEach(s => s.Send(data)); + } + catch (Exception ex) + { + Log.MyLog.WriteLogFile("直播Websocket推送异常:" + ex.Message, "LiveWebSocketError"); + } + } + + #endregion + } +} diff --git a/FaceDetect/FaceDetect.csproj b/FaceDetect/FaceDetect.csproj new file mode 100644 index 0000000..db130df --- /dev/null +++ b/FaceDetect/FaceDetect.csproj @@ -0,0 +1,124 @@ + + + + + Debug + AnyCPU + {D1AC3DD6-CA8D-4141-A250-E17EF25D6091} + WinExe + FaceDetect + FaceDetect + v4.8 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + true + + + x64 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + FaceDetect.EntryPoint + + + + ..\packages\Fleck.1.2.0\lib\net45\Fleck.dll + + + + ..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll + + + False + bin\Debug\OpenCvSharp.dll + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + + + + + + + + + + MainWindow.xaml + Code + + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + \ No newline at end of file diff --git a/FaceDetect/MainWindow.xaml b/FaceDetect/MainWindow.xaml new file mode 100644 index 0000000..f02f09a --- /dev/null +++ b/FaceDetect/MainWindow.xaml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/FaceDetect/MainWindow.xaml.cs b/FaceDetect/MainWindow.xaml.cs new file mode 100644 index 0000000..49f7cad --- /dev/null +++ b/FaceDetect/MainWindow.xaml.cs @@ -0,0 +1,66 @@ +using FaceDetect.Common; +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace FaceDetect +{ + /// + /// MainWindow.xaml 的交互逻辑 + /// + public partial class MainWindow : Window + { + #region 构造函数 + public MainWindow() + { + InitializeComponent(); + //百度SDK初始化 + BaiduFaceSdk.Init(); + ////开启AllWebSocket + //WebSocketManager.WebSocket.OpenSocketForAll(); + //开启FaceWebSocket + WebSocketManager.WebSocket.OpenSocketForFace(); + //开启LiveWebSocket + WebSocketManager.WebSocket.OpenSocketForLive(); + } + #endregion + + #region 事件 + private void Window_Loaded(object sender, RoutedEventArgs e) + { + //主要逻辑 + BaiduFaceSdk.SDK.USBVideoTract(); + } + + private void Window_Closed(object sender, EventArgs e) + { + //销毁SDK + BaiduFaceSdk.Destory(); + Environment.Exit(0); + #region 上传未被上传的人脸统计信息 + //BaiduFaceSdk.SDK.ClearTrack(); + BaiduFaceSdk.SDK.UploadTheRestFace(); + #endregion + } + private void Grid_MouseMove(object sender, MouseEventArgs e) + { + if (Mouse.LeftButton == MouseButtonState.Pressed) + { + this.DragMove(); + } + } + #endregion + } +} diff --git a/FaceDetect/Model/BaiduConfigModel.cs b/FaceDetect/Model/BaiduConfigModel.cs new file mode 100644 index 0000000..5a3d67d --- /dev/null +++ b/FaceDetect/Model/BaiduConfigModel.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Model +{ + public class DetectModel + { + public int max_detect_num { get; set; } + public int min_face_size { get; set; } + public int scale_ratio { get; set; } + public float not_face_thr { get; set; } + } +} diff --git a/FaceDetect/Model/FaceDataModel.cs b/FaceDetect/Model/FaceDataModel.cs new file mode 100644 index 0000000..403e237 --- /dev/null +++ b/FaceDetect/Model/FaceDataModel.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FaceDetect.Model +{ + public class FaceDataModel + { + public string GenderMale { get; set; } + + public string Age { get; set; } + + public int StopTime { get; set; } + + public DateTime BeginTime { get; set; } + + public DateTime EndTime { get; set; } + + public string IP { get; set; } + } + public class FaceSocketModel + { + public int age { get; set; } + public string vipId { get; set; } + public string faceID { get; set; } + public string carNo { get; set; } + public string genderMale { get; set; } + public string faceImage { get; set; } + } +} diff --git a/FaceDetect/Properties/AssemblyInfo.cs b/FaceDetect/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5b88265 --- /dev/null +++ b/FaceDetect/Properties/AssemblyInfo.cs @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// 有关程序集的一般信息由以下 +// 控制。更改这些特性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("FaceDetect")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Organization")] +[assembly: AssemblyProduct("FaceDetect")] +[assembly: AssemblyCopyright("Copyright © Organization 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 将 ComVisible 设置为 false 会使此程序集中的类型 +//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 +//请将此类型的 ComVisible 特性设置为 true。 +[assembly: ComVisible(false)] + +//若要开始生成可本地化的应用程序,请设置 +//.csproj 文件中的 CultureYouAreCodingWith +//例如,如果您在源文件中使用的是美国英语, +//使用的是美国英语,请将 设置为 en-US。 然后取消 +//对以下 NeutralResourceLanguage 特性的注释。 更新 +//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。 + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //主题特定资源词典所处位置 + //(未在页面中找到资源时使用, + //或应用程序资源字典中找到时使用) + ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置 + //(未在页面中找到资源时使用, + //、应用程序或任何主题专用资源字典中找到时使用) +)] + + +// 程序集的版本信息由下列四个值组成: +// +// 主版本 +// 次版本 +// 生成号 +// 修订号 +// +//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 +//通过使用 "*",如下所示: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/FaceDetect/Properties/Resources.Designer.cs b/FaceDetect/Properties/Resources.Designer.cs new file mode 100644 index 0000000..f83bccf --- /dev/null +++ b/FaceDetect/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本: 4.0.30319.42000 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FaceDetect.Properties +{ + + + /// + /// 强类型资源类,用于查找本地化字符串等。 + /// + // 此类是由 StronglyTypedResourceBuilder + // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 + // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen + // (以 /str 作为命令选项),或重新生成 VS 项目。 + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// 返回此类使用的缓存 ResourceManager 实例。 + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FaceDetect.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 重写当前线程的 CurrentUICulture 属性,对 + /// 使用此强类型资源类的所有资源查找执行重写。 + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/FaceDetect/Properties/Resources.resx b/FaceDetect/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/FaceDetect/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/FaceDetect/Properties/Settings.Designer.cs b/FaceDetect/Properties/Settings.Designer.cs new file mode 100644 index 0000000..e31d709 --- /dev/null +++ b/FaceDetect/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FaceDetect.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/FaceDetect/Properties/Settings.settings b/FaceDetect/Properties/Settings.settings new file mode 100644 index 0000000..033d7a5 --- /dev/null +++ b/FaceDetect/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/BaiduFaceApi.dll b/FaceDetect/bin/Debug/BaiduFaceApi.dll new file mode 100644 index 0000000..d4189bf Binary files /dev/null and b/FaceDetect/bin/Debug/BaiduFaceApi.dll differ diff --git a/FaceDetect/bin/Debug/FaceDetect.exe b/FaceDetect/bin/Debug/FaceDetect.exe new file mode 100644 index 0000000..31e4baf Binary files /dev/null and b/FaceDetect/bin/Debug/FaceDetect.exe differ diff --git a/FaceDetect/bin/Debug/FaceDetect.exe.config b/FaceDetect/bin/Debug/FaceDetect.exe.config new file mode 100644 index 0000000..85199a0 --- /dev/null +++ b/FaceDetect/bin/Debug/FaceDetect.exe.config @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/FaceDetect.pdb b/FaceDetect/bin/Debug/FaceDetect.pdb new file mode 100644 index 0000000..5ef7858 Binary files /dev/null and b/FaceDetect/bin/Debug/FaceDetect.pdb differ diff --git a/FaceDetect/bin/Debug/Fleck.dll b/FaceDetect/bin/Debug/Fleck.dll new file mode 100644 index 0000000..8879ec4 Binary files /dev/null and b/FaceDetect/bin/Debug/Fleck.dll differ diff --git a/FaceDetect/bin/Debug/Newtonsoft.Json.dll b/FaceDetect/bin/Debug/Newtonsoft.Json.dll new file mode 100644 index 0000000..7af125a Binary files /dev/null and b/FaceDetect/bin/Debug/Newtonsoft.Json.dll differ diff --git a/FaceDetect/bin/Debug/Newtonsoft.Json.xml b/FaceDetect/bin/Debug/Newtonsoft.Json.xml new file mode 100644 index 0000000..008e0ca --- /dev/null +++ b/FaceDetect/bin/Debug/Newtonsoft.Json.xml @@ -0,0 +1,11305 @@ + + + + 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 + + + + + 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 128. + + + + + 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 128. + + + + + 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 128. + + + + + 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. + + + + + 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 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 . + + + + 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/FaceDetect/bin/Debug/OpenCvSharp.dll b/FaceDetect/bin/Debug/OpenCvSharp.dll new file mode 100644 index 0000000..d58c36a Binary files /dev/null and b/FaceDetect/bin/Debug/OpenCvSharp.dll differ diff --git a/FaceDetect/bin/Debug/OpenCvSharpExtern.dll b/FaceDetect/bin/Debug/OpenCvSharpExtern.dll new file mode 100644 index 0000000..0263f1a Binary files /dev/null and b/FaceDetect/bin/Debug/OpenCvSharpExtern.dll differ diff --git a/FaceDetect/bin/Debug/bd_license.dll b/FaceDetect/bin/Debug/bd_license.dll new file mode 100644 index 0000000..eebd569 Binary files /dev/null and b/FaceDetect/bin/Debug/bd_license.dll differ diff --git a/FaceDetect/bin/Debug/config/action_live.json b/FaceDetect/bin/Debug/config/action_live.json new file mode 100644 index 0000000..38b324e --- /dev/null +++ b/FaceDetect/bin/Debug/config/action_live.json @@ -0,0 +1,13 @@ +{ + "eye_open_threshold":0.5, + "eye_close_threshold":0.5, + "mouth_open_threshold":0.5, + "mouth_close_threshold":0.5, + "look_up_threshold":0.5, + "look_down_threshold":0.5, + "turn_left_threshold":0.5, + "turn_right_threshold":0.5, + "nod_threshold":0.5, + "shake_threshold":0.5, + "max_cache_num":1 +} \ No newline at end of file diff --git a/FaceDetect/bin/Debug/config/crop.json b/FaceDetect/bin/Debug/config/crop.json new file mode 100644 index 0000000..7170b5c --- /dev/null +++ b/FaceDetect/bin/Debug/config/crop.json @@ -0,0 +1,5 @@ +{ + "is_flat":200, + "crop_size":100, + "enlarge_ratio":1 +} \ No newline at end of file diff --git a/FaceDetect/bin/Debug/config/detect.json b/FaceDetect/bin/Debug/config/detect.json new file mode 100644 index 0000000..9e0374f --- /dev/null +++ b/FaceDetect/bin/Debug/config/detect.json @@ -0,0 +1 @@ +{"max_detect_num":10,"min_face_size":0,"scale_ratio":-1,"not_face_thr":0.5} \ No newline at end of file diff --git a/FaceDetect/bin/Debug/config/track.json b/FaceDetect/bin/Debug/config/track.json new file mode 100644 index 0000000..bff09c5 --- /dev/null +++ b/FaceDetect/bin/Debug/config/track.json @@ -0,0 +1,4 @@ +{ + "detect_intv_before_track":0.02, + "detect_intv_during_track":0.02 +} \ No newline at end of file diff --git a/FaceDetect/bin/Debug/db/.temp.fortest b/FaceDetect/bin/Debug/db/.temp.fortest new file mode 100644 index 0000000..e69de29 diff --git a/FaceDetect/bin/Debug/db/face.db b/FaceDetect/bin/Debug/db/face.db new file mode 100644 index 0000000..6c48edd Binary files /dev/null and b/FaceDetect/bin/Debug/db/face.db differ diff --git a/FaceDetect/bin/Debug/face_conf.json b/FaceDetect/bin/Debug/face_conf.json new file mode 100644 index 0000000..6ded2dd --- /dev/null +++ b/FaceDetect/bin/Debug/face_conf.json @@ -0,0 +1 @@ +{"log_open":false} \ No newline at end of file diff --git a/FaceDetect/bin/Debug/face_sdk.dll b/FaceDetect/bin/Debug/face_sdk.dll new file mode 100644 index 0000000..cd377c3 Binary files /dev/null and b/FaceDetect/bin/Debug/face_sdk.dll differ diff --git a/FaceDetect/bin/Debug/libcurl.dll b/FaceDetect/bin/Debug/libcurl.dll new file mode 100644 index 0000000..dfef5bc Binary files /dev/null and b/FaceDetect/bin/Debug/libcurl.dll differ diff --git a/FaceDetect/bin/Debug/libeay32.dll b/FaceDetect/bin/Debug/libeay32.dll new file mode 100644 index 0000000..107e764 Binary files /dev/null and b/FaceDetect/bin/Debug/libeay32.dll differ diff --git a/FaceDetect/bin/Debug/libiomp5md.dll b/FaceDetect/bin/Debug/libiomp5md.dll new file mode 100644 index 0000000..d66fee2 Binary files /dev/null and b/FaceDetect/bin/Debug/libiomp5md.dll differ diff --git a/FaceDetect/bin/Debug/license/license.ini b/FaceDetect/bin/Debug/license/license.ini new file mode 100644 index 0000000..e0a2625 --- /dev/null +++ b/FaceDetect/bin/Debug/license/license.ini @@ -0,0 +1,2 @@ +2AD25B1506B1AB8A4DBDC2BE9EC14026DCED932D6952103DF549E57F4EFD931A537DFA8B04F1EAD1EB52178B25F417C9BA494E4845FB2A810DA869CC2FCF3B7A253C917AF723F3DB2CD9BEFE08841FD9FA6110BF58DA0F86D41FC597AE8ADC198FCE4690AAD832255564CCB99339ECE9DF541CE3627BEF59CBFBF92B3BDC8DE2FDD53AF78565A7A14D59602480BB67610B2EA0B0FDC1D177989713FDC056C2CE3F159EAE036BEABE73B7FA7A0FB034F86D6515D91A70B1171032F862043CCCA4C8D67BC433A27AB60BDB3546D1B37B947E500C2223A9EA8EE97B0FA9EE5400304F80A0DE9D931A02D2905210F42B695AC422CC6EF95E69699846EFACF92D1B20 +6DCA134DD95CE1F1C60F6791257EB0EC8CAC074E571DCDA77DEFD86F044B1BF5C185AF761C6423DF6736E8D487BE0796D055E77595602229224E535336EA577E1D385AC1A484A301FCEBAA5B3065714E9BBC4CADD720E2AF85400C21B8FAB0E134A7370665D948D5AC5ABB728E99C83081029FE7CC7BF1193B4D80204EAAC0CDEEBEE4C67911B27D71A088DDFCAB0C25FBFA43B23DD7DF816CE033281308D4FFDBE4E58119BC6A6B9D63D740321EDAA0653675A2E8134B9FC3048A80B824E08CE9F44D84C31346A959F7135A5272248901B8B2B36C6F7549AD0FEEBCC442CA7C9436799B71C97C43AC56F23AC63529D32FF0EE40849A3D3601D5E827C81B8CE0 \ No newline at end of file diff --git a/FaceDetect/bin/Debug/license/license.key b/FaceDetect/bin/Debug/license/license.key new file mode 100644 index 0000000..ee53d4b --- /dev/null +++ b/FaceDetect/bin/Debug/license/license.key @@ -0,0 +1 @@ +FA6B-BHPC-TXFK-STGV \ No newline at end of file diff --git a/FaceDetect/bin/Debug/log/2022-07-26/AppError2022-07-26.txt b/FaceDetect/bin/Debug/log/2022-07-26/AppError2022-07-26.txt new file mode 100644 index 0000000..749ceda --- /dev/null +++ b/FaceDetect/bin/Debug/log/2022-07-26/AppError2022-07-26.txt @@ -0,0 +1,13 @@ + + Log Entry : 14:25:20 2022年7月26日 + 百度人脸Sdk初始化异常:试图加载格式不正确的程序。 (异常来自 HRESULT:0x8007000B) + ------------------------------------ + + Log Entry : 14:31:16 2022年7月26日 + 百度人脸Sdk初始化异常:试图加载格式不正确的程序。 (异常来自 HRESULT:0x8007000B) + ------------------------------------ + + Log Entry : 14:31:28 2022年7月26日 + 百度人脸Sdk初始化异常:试图加载格式不正确的程序。 (异常来自 HRESULT:0x8007000B) + ------------------------------------ + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/log/2022-07-27/AppError2022-07-27.txt b/FaceDetect/bin/Debug/log/2022-07-27/AppError2022-07-27.txt new file mode 100644 index 0000000..be1a227 --- /dev/null +++ b/FaceDetect/bin/Debug/log/2022-07-27/AppError2022-07-27.txt @@ -0,0 +1,217 @@ + + Log Entry : 15:31:22 2022年7月27日 + System.Net.WebException: 操作超时 + 在 System.Net.HttpWebRequest.GetResponse() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 90 + ------------------------------------ + + Log Entry : 15:55:25 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 15:55:29 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 15:55:34 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 15:55:38 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 15:59:07 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:01:46 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:01:50 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:02:04 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:02:14 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:02:25 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:02:30 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:02:36 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:03:13 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:03:18 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:03:22 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:16:53 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:16:57 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:17:44 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:17:52 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:18:07 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:18:16 2022年7月27日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/log/2022-07-27/FaceWebSocket2022-07-27.txt b/FaceDetect/bin/Debug/log/2022-07-27/FaceWebSocket2022-07-27.txt new file mode 100644 index 0000000..a37fdec --- /dev/null +++ b/FaceDetect/bin/Debug/log/2022-07-27/FaceWebSocket2022-07-27.txt @@ -0,0 +1,5 @@ + + Log Entry : 15:46:42 2022年7月27日 + 屏保socket + ------------------------------------ + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/log/2022-07-27/FaceWebSocketError2022-07-27.txt b/FaceDetect/bin/Debug/log/2022-07-27/FaceWebSocketError2022-07-27.txt new file mode 100644 index 0000000..003440f --- /dev/null +++ b/FaceDetect/bin/Debug/log/2022-07-27/FaceWebSocketError2022-07-27.txt @@ -0,0 +1,5 @@ + + Log Entry : 15:03:16 2022年7月27日 + 人脸Websocket开启异常:在其上下文中,该请求的地址无效。 + ------------------------------------ + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/log/2022-07-28/AppError2022-07-28.txt b/FaceDetect/bin/Debug/log/2022-07-28/AppError2022-07-28.txt new file mode 100644 index 0000000..5c78454 --- /dev/null +++ b/FaceDetect/bin/Debug/log/2022-07-28/AppError2022-07-28.txt @@ -0,0 +1,3143 @@ + + Log Entry : 9:46:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:46:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:09 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:10 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:10 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:10 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:10 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:10 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:10 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:10 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:11 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:11 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:11 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:11 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:11 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:11 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:12 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:12 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:12 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:12 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:12 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:12 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:12 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:13 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:13 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:13 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:13 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:13 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:13 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:13 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:14 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:14 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:14 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:14 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:14 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:14 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:15 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:15 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:15 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:15 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:15 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:15 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:15 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:16 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:16 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:16 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:16 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:16 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:16 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:17 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:18 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:19 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:20 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:21 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:22 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:23 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:24 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:25 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:26 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:27 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:28 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:29 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:30 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:31 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:32 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:33 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:34 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:35 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:36 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:37 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:38 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:39 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:40 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:41 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:42 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:43 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:44 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:45 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:47 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:48 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:49 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:50 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:51 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:52 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:53 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:54 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:55 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:55 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:55 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:55 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:55 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:55 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:55 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:56 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:56 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:56 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:56 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:56 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:56 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:57 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:57 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:57 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:57 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:57 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:57 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:57 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:58 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:58 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:58 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:58 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:58 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:58 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:59 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:59 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:59 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:59 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:59 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:59 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:47:59 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:00 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:00 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:00 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:00 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:00 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:00 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:00 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:01 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:01 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:01 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:01 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:01 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:01 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:02 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:02 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:02 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:02 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:02 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:02 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:02 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:03 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:04 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:04 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:04 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:04 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:04 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:04 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:48:05 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 9:49:46 2022年7月28日 + 推送流文件异常:Raw image encoder error: Empty JPEG image (DNL not supported) + ------------------------------------ + + Log Entry : 10:22:31 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:22:35 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:22:40 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:22:44 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:22:48 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:22:53 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:22:57 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:23:02 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:23:06 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:23:11 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:23:15 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:23:20 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:23:24 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:25:33 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:25:37 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:26:35 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:26:39 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:26:44 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:26:48 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:26:53 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:26:57 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:02 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:06 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:11 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:15 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:20 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:24 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:29 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:33 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:37 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:42 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:27:46 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:23 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:28 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:32 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:37 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:41 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:45 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:50 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:54 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:28:59 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:03 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:08 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:15 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:25 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:30 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:36 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:42 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:47 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:51 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:29:56 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:00 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:05 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:09 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:13 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:18 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:22 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:27 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:31 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:35 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:40 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:44 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:49 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 10:30:53 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:53300 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 13:38:40 2022年7月28日 + System.Net.WebException: 无法连接到远程服务器 ---> System.Net.Sockets.SocketException: 由于目标计算机积极拒绝,无法连接。 127.0.0.1:1345 + 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress) + 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) + --- 内部异常堆栈跟踪的结尾 --- + 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) + 在 System.Net.HttpWebRequest.GetRequestStream() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 86 + ------------------------------------ + + Log Entry : 16:26:52 2022年7月28日 + System.Net.WebException: 远程服务器返回错误: (400) 错误的请求。 + 在 System.Net.HttpWebRequest.GetResponse() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 90 + ------------------------------------ + + Log Entry : 16:32:08 2022年7月28日 + System.Net.WebException: 远程服务器返回错误: (400) 错误的请求。 + 在 System.Net.HttpWebRequest.GetResponse() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 90 + ------------------------------------ + + Log Entry : 16:42:03 2022年7月28日 + System.Net.WebException: 远程服务器返回错误: (400) 错误的请求。 + 在 System.Net.HttpWebRequest.GetResponse() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 90 + ------------------------------------ + + Log Entry : 16:44:03 2022年7月28日 + System.Net.WebException: 远程服务器返回错误: (400) 错误的请求。 + 在 System.Net.HttpWebRequest.GetResponse() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 90 + ------------------------------------ + + Log Entry : 17:01:34 2022年7月28日 + System.Net.WebException: 远程服务器返回错误: (400) 错误的请求。 + 在 System.Net.HttpWebRequest.GetResponse() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 90 + ------------------------------------ + + Log Entry : 17:10:59 2022年7月28日 + System.Net.WebException: 远程服务器返回错误: (400) 错误的请求。 + 在 System.Net.HttpWebRequest.GetResponse() + 在 FaceDetect.Common.HttpComm.Post(String url, String data, String contentType, Dictionary`2 headers) 位置 F:\WJL\IOT\FaceDetect\FaceDetect\FaceDetect\Common\HttpComm.cs:行号 90 + ------------------------------------ + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/log/2022-07-28/HttpError2022-07-28.txt b/FaceDetect/bin/Debug/log/2022-07-28/HttpError2022-07-28.txt new file mode 100644 index 0000000..d17ace6 --- /dev/null +++ b/FaceDetect/bin/Debug/log/2022-07-28/HttpError2022-07-28.txt @@ -0,0 +1,70 @@ + + Log Entry : 13:43:16 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 13:52:52 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 14:19:06 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 14:27:29 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 14:28:16 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 14:30:59 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 14:31:10 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 14:32:50 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 15:06:18 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 15:56:53 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 15:59:40 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 16:03:27 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 16:09:53 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 16:11:18 2022年7月28日 + 上传图片异常:String 引用没有设置为 String 的实例。 +参数名: s + ------------------------------------ + + Log Entry : 16:28:25 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 16:29:02 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + + Log Entry : 16:29:19 2022年7月28日 + 上传图片异常:Cannot cast Newtonsoft.Json.Linq.JObject to Newtonsoft.Json.Linq.JToken. + ------------------------------------ + \ No newline at end of file diff --git a/FaceDetect/bin/Debug/mkldnn.dll b/FaceDetect/bin/Debug/mkldnn.dll new file mode 100644 index 0000000..873dfd2 Binary files /dev/null and b/FaceDetect/bin/Debug/mkldnn.dll differ diff --git a/FaceDetect/bin/Debug/mklml.dll b/FaceDetect/bin/Debug/mklml.dll new file mode 100644 index 0000000..4239b52 Binary files /dev/null and b/FaceDetect/bin/Debug/mklml.dll differ diff --git a/FaceDetect/bin/Debug/models/align/align_fast_float32.encrypted b/FaceDetect/bin/Debug/models/align/align_fast_float32.encrypted new file mode 100644 index 0000000..78ab1f8 Binary files /dev/null and b/FaceDetect/bin/Debug/models/align/align_fast_float32.encrypted differ diff --git a/FaceDetect/bin/Debug/models/align/align_rgb.encrypted b/FaceDetect/bin/Debug/models/align/align_rgb.encrypted new file mode 100644 index 0000000..0df018c Binary files /dev/null and b/FaceDetect/bin/Debug/models/align/align_rgb.encrypted differ diff --git a/FaceDetect/bin/Debug/models/attribute/attribute_float32_paddle.encrypted b/FaceDetect/bin/Debug/models/attribute/attribute_float32_paddle.encrypted new file mode 100644 index 0000000..24aedf7 Binary files /dev/null and b/FaceDetect/bin/Debug/models/attribute/attribute_float32_paddle.encrypted differ diff --git a/FaceDetect/bin/Debug/models/best_image/bestimage_rgb.encrypted b/FaceDetect/bin/Debug/models/best_image/bestimage_rgb.encrypted new file mode 100644 index 0000000..d352d42 Binary files /dev/null and b/FaceDetect/bin/Debug/models/best_image/bestimage_rgb.encrypted differ diff --git a/FaceDetect/bin/Debug/models/blur/blur_rgb.encrypted b/FaceDetect/bin/Debug/models/blur/blur_rgb.encrypted new file mode 100644 index 0000000..1338399 Binary files /dev/null and b/FaceDetect/bin/Debug/models/blur/blur_rgb.encrypted differ diff --git a/FaceDetect/bin/Debug/models/dark_enhance/dark_enhance_float32_paddle.encrypted b/FaceDetect/bin/Debug/models/dark_enhance/dark_enhance_float32_paddle.encrypted new file mode 100644 index 0000000..0d727f2 Binary files /dev/null and b/FaceDetect/bin/Debug/models/dark_enhance/dark_enhance_float32_paddle.encrypted differ diff --git a/FaceDetect/bin/Debug/models/detect/detect_rgb.encrypted b/FaceDetect/bin/Debug/models/detect/detect_rgb.encrypted new file mode 100644 index 0000000..e547ebb Binary files /dev/null and b/FaceDetect/bin/Debug/models/detect/detect_rgb.encrypted differ diff --git a/FaceDetect/bin/Debug/models/eyes_close/eyes_close_float32_paddle.encrypted b/FaceDetect/bin/Debug/models/eyes_close/eyes_close_float32_paddle.encrypted new file mode 100644 index 0000000..543b7b4 Binary files /dev/null and b/FaceDetect/bin/Debug/models/eyes_close/eyes_close_float32_paddle.encrypted differ diff --git a/FaceDetect/bin/Debug/models/feature/feature.encrypted b/FaceDetect/bin/Debug/models/feature/feature.encrypted new file mode 100644 index 0000000..fac74e1 Binary files /dev/null and b/FaceDetect/bin/Debug/models/feature/feature.encrypted differ diff --git a/FaceDetect/bin/Debug/models/feature/feature_nir_float32_paddle.encrypted b/FaceDetect/bin/Debug/models/feature/feature_nir_float32_paddle.encrypted new file mode 100644 index 0000000..25a8365 Binary files /dev/null and b/FaceDetect/bin/Debug/models/feature/feature_nir_float32_paddle.encrypted differ diff --git a/FaceDetect/bin/Debug/models/gaze/gaze_float32_paddle.encrypted b/FaceDetect/bin/Debug/models/gaze/gaze_float32_paddle.encrypted new file mode 100644 index 0000000..7691014 Binary files /dev/null and b/FaceDetect/bin/Debug/models/gaze/gaze_float32_paddle.encrypted differ diff --git a/FaceDetect/bin/Debug/models/mouth_close/mouth_close_float32_paddle.encrypted b/FaceDetect/bin/Debug/models/mouth_close/mouth_close_float32_paddle.encrypted new file mode 100644 index 0000000..213c99d Binary files /dev/null and b/FaceDetect/bin/Debug/models/mouth_close/mouth_close_float32_paddle.encrypted differ diff --git a/FaceDetect/bin/Debug/models/mouth_mask/mouth_mask.encrypted b/FaceDetect/bin/Debug/models/mouth_mask/mouth_mask.encrypted new file mode 100644 index 0000000..37971b9 Binary files /dev/null and b/FaceDetect/bin/Debug/models/mouth_mask/mouth_mask.encrypted differ diff --git a/FaceDetect/bin/Debug/models/occlusion/occlusion.encrypted b/FaceDetect/bin/Debug/models/occlusion/occlusion.encrypted new file mode 100644 index 0000000..b6487b7 Binary files /dev/null and b/FaceDetect/bin/Debug/models/occlusion/occlusion.encrypted differ diff --git a/FaceDetect/bin/Debug/models/resource.tmp b/FaceDetect/bin/Debug/models/resource.tmp new file mode 100644 index 0000000..e69de29 diff --git a/FaceDetect/bin/Debug/models/silent_live/liveness_nir.encrypted b/FaceDetect/bin/Debug/models/silent_live/liveness_nir.encrypted new file mode 100644 index 0000000..27d0805 Binary files /dev/null and b/FaceDetect/bin/Debug/models/silent_live/liveness_nir.encrypted differ diff --git a/FaceDetect/bin/Debug/models/silent_live/liveness_rgb_rgb.encrypted b/FaceDetect/bin/Debug/models/silent_live/liveness_rgb_rgb.encrypted new file mode 100644 index 0000000..931d923 Binary files /dev/null and b/FaceDetect/bin/Debug/models/silent_live/liveness_rgb_rgb.encrypted differ diff --git a/FaceDetect/bin/Debug/models/silent_live/multifactor_2dmask.encrypted b/FaceDetect/bin/Debug/models/silent_live/multifactor_2dmask.encrypted new file mode 100644 index 0000000..6c6a9af Binary files /dev/null and b/FaceDetect/bin/Debug/models/silent_live/multifactor_2dmask.encrypted differ diff --git a/FaceDetect/bin/Debug/models/silent_live/multifactor_hand.encrypted b/FaceDetect/bin/Debug/models/silent_live/multifactor_hand.encrypted new file mode 100644 index 0000000..f651bfa Binary files /dev/null and b/FaceDetect/bin/Debug/models/silent_live/multifactor_hand.encrypted differ diff --git a/FaceDetect/bin/Debug/models/silent_live/multifactor_reflection.encrypted b/FaceDetect/bin/Debug/models/silent_live/multifactor_reflection.encrypted new file mode 100644 index 0000000..73c66b9 Binary files /dev/null and b/FaceDetect/bin/Debug/models/silent_live/multifactor_reflection.encrypted differ diff --git a/FaceDetect/bin/Debug/models/silent_live/silent_live_depth_float32_paddle.encrypted b/FaceDetect/bin/Debug/models/silent_live/silent_live_depth_float32_paddle.encrypted new file mode 100644 index 0000000..2159101 Binary files /dev/null and b/FaceDetect/bin/Debug/models/silent_live/silent_live_depth_float32_paddle.encrypted differ diff --git a/FaceDetect/bin/Debug/openblas.dll b/FaceDetect/bin/Debug/openblas.dll new file mode 100644 index 0000000..c12b03a Binary files /dev/null and b/FaceDetect/bin/Debug/openblas.dll differ diff --git a/FaceDetect/bin/Debug/opencv_ffmpeg320_64.dll b/FaceDetect/bin/Debug/opencv_ffmpeg320_64.dll new file mode 100644 index 0000000..8a26deb Binary files /dev/null and b/FaceDetect/bin/Debug/opencv_ffmpeg320_64.dll differ diff --git a/FaceDetect/bin/Debug/opencv_world320.dll b/FaceDetect/bin/Debug/opencv_world320.dll new file mode 100644 index 0000000..f1943f8 Binary files /dev/null and b/FaceDetect/bin/Debug/opencv_world320.dll differ diff --git a/FaceDetect/bin/Debug/paddle_fluid.dll b/FaceDetect/bin/Debug/paddle_fluid.dll new file mode 100644 index 0000000..3aabd55 Binary files /dev/null and b/FaceDetect/bin/Debug/paddle_fluid.dll differ diff --git a/FaceDetect/bin/Debug/ssleay32.dll b/FaceDetect/bin/Debug/ssleay32.dll new file mode 100644 index 0000000..d01cbec Binary files /dev/null and b/FaceDetect/bin/Debug/ssleay32.dll differ diff --git a/FaceDetect/packages.config b/FaceDetect/packages.config new file mode 100644 index 0000000..b82e74e --- /dev/null +++ b/FaceDetect/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file