Ejemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            var cameras = nuc.GetCameras();

            Log("摄像机数量->" + cameras.Count);
            foreach (var c in cameras)
            {
                Log("Id:" + c.Id + " 名称:" + c.Name + " 地址:" + c.Url);
            }
        }