Exemplo n.º 1
0
 public void SendDataHistoryReject(long id, string requestId, LrpServer.Net.LrpMarketHistoryRejectType rejectType, string rejectReason)
 {
     this.Instance.SendDataHistoryReject(this.Handle, id, requestId, rejectType, rejectReason);
 }
Exemplo n.º 2
0
 public static void WriteMarketHistoryRejectType(this MemoryBuffer buffer, LrpServer.Net.LrpMarketHistoryRejectType arg)
 {
     buffer.WriteInt32((int)arg);
 }
Exemplo n.º 3
0
        public void SendDataHistoryReject(SoftFX.Lrp.LPtr handle, long id, string requestId, LrpServer.Net.LrpMarketHistoryRejectType rejectType, string rejectReason)
        {
            using (MemoryBuffer buffer = m_client.Create())
            {
                buffer.WriteLocalPointer(handle);
                buffer.WriteInt64(id);
                buffer.WriteAString(requestId);
                buffer.WriteMarketHistoryRejectType(rejectType);
                buffer.WriteAString(rejectReason);

                int _status = m_client.Invoke(1, 17, buffer);
                TypesSerializer.Throw(_status, buffer);
            }
        }