Пример #1
0
        /// <summary>
        ///
        /// </summary>
        private void ReadAllIds()
        {
            mAllId = driverProxy.QueryAllTagIdAndNames(6000000);

            if (mAllId.Count > 0)
            {
                var tagName = mAllId.First().Value.Item1;
                var ids     = driverProxy.QueryTagId(new List <string>()
                {
                    tagName
                });
                if (ids.Count > 0)
                {
                    //test
                }

                rdb = new SpiderDriver.ClientApi.RealDataBuffer(mAllId.Count * 32);
            }

            var driverrecordTags = driverProxy.GetDriverRecordTypeTagIds();

            foreach (var vv in driverrecordTags)
            {
                //to do here
            }

            var vvd = driverProxy.CheckRecordTypeByTagId(new List <int>()
            {
                1, 2, 3, 4, 5, 6, 7, 8, 9, 10
            });
        }