コード例 #1
0
ファイル: Emulator.cs プロジェクト: alexevil1979/alexevil
            public ReplyData(int id, string error)
            {
                this.Type = ReplyTypes.OrderReply;

                this.Id     = id;
                this.Error  = error;
                this.Active = 0;
                this.Filled = 0;
                this.Price  = 0;
            }
コード例 #2
0
ファイル: Emulator.cs プロジェクト: alexevil1979/alexevil
            public ReplyData(ReplyTypes type, int id, int active, int filled, int price)
            {
                this.Type = type;

                this.Id    = id;
                this.Error = null;

                this.Active = active;
                this.Filled = filled;

                this.Price = price;
            }
コード例 #3
0
 public static string GetResponse(ReplyTypes responseType)
 {
     return(GetResponse(responseType.ToString()));
 }