暗号化通信時に使用する暗号化キーを設定・取得する。
- Type: string
- Access Type: read / write
- Default value: blank
- Range: ascii string(alphabet, numeric, symbol ) . and 16 charactors or less
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get string encKey= cltComm.ReqSendDataEncryptKey; //Set cltComm.ReqSendDataEncryptKey = "s53hj#Fg567we$12"; |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get encKey = cltComm.ReqSendDataEncryptKey #Set cltComm.ReqSendDataEncryptKey = "s53hj#Fg567we$12" |
Python
1 2 3 4 5 6 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get encKey = clt_comm.ReqSendDataEncryptKey #Set clt_comm.ReqSendDataEncryptKey = "s53hj#Fg567we$12" |