Esempio n. 1
0
        private void test6( )
        {
            OperateResult <UserType> read = keyence_net.ReadCustomer <UserType>("D100");

            if (read.IsSuccess)
            {
                UserType value = read.Content;
            }
            // write value
            keyence_net.WriteCustomer("D100", new UserType( ));

            keyence_net.LogNet = new HslCommunication.LogNet.LogNetSingle(Application.StartupPath + "\\Logs.txt");
        }
        private void test6( )
        {
            // Custom types of Read and write situations in which type usertype need to be implemented in advance.
            // 自定义类型的读写的示例,前提是需要提前实现UserType类,做好相应的序列化,反序列化的操作

            OperateResult <UserType> read = keyence_net.ReadCustomer <UserType>("D100");

            if (read.IsSuccess)
            {
                UserType value = read.Content;
            }
            // write value
            keyence_net.WriteCustomer("D100", new UserType( ));

            // Sets an instance operation for the log.
            keyence_net.LogNet = new HslCommunication.LogNet.LogNetSingle(Application.StartupPath + "\\Logs.txt");
        }