コード例 #1
0
ファイル: Program.cs プロジェクト: handayu/FTAPI-3.20.1
 public void OnReply_GetUserSecurity(FTAPI_Conn client, int nSerialNo, QotGetUserSecurity.Response rsp)
 {
 }
コード例 #2
0
 public void OnReply_GetUserSecurity(FTAPI_Conn client, uint nSerialNo, QotGetUserSecurity.Response rsp)
 {
     handleQotOnReply(nSerialNo, ProtoID.QotGetUserSecurity, rsp);
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: sokolovsa/StockSharp.FTAPI
 public void OnReply_GetUserSecurity(FTAPI_Conn client, uint nSerialNo, QotGetUserSecurity.Response rsp)
 {
     Console.WriteLine(rsp.S2C.ToJson());
 }
コード例 #4
0
 public GetUserSecurityEventArgs(FTAPI_Conn client, int nSerialNo, QotGetUserSecurity.Response result)
 {
     Client   = client;
     SerialNo = nSerialNo;
     Result   = result;
 }