예제 #1
0
        public AuctionHouseSearch(Context context, Constants.Search search)
            : base("AuctionHouseSearch", context)
        {
            this.search_ = search;
            this.args_ = new List<string>();

            this.args_.Add("type");
            this.args_.Add(search.ToString().ToLower());
        }
예제 #2
0
 public QuestionPage(Context context)
     : base("QuestionPage", context)
 {
 }
예제 #3
0
 public AccountInfo(Context context,string route)
     : base("AccountInfo", context)
 {
     this.route_ = route;
 }
예제 #4
0
 public SharedInfo(Context context)
     : base("SharedInfo", context)
 {
 }
예제 #5
0
파일: Login.cs 프로젝트: ddksaku/futbot
 public Login(Context context)
     : base("Login", context)
 {
 }
예제 #6
0
 public LoginVerify(Context context)
     : base("LoginVerify", context)
 {
 }
예제 #7
0
파일: SignIn.cs 프로젝트: ddksaku/futbot
 public SignIn(Context context)
     : base("SignIn", context)
 {
 }
예제 #8
0
 public WebAppPage(Context context)
     : base("WebAppPage", context)
 {
 }
예제 #9
0
 public DiscardItem(Context context,long card_id)
     : base("DiscardItem", context)
 {
     this.card_id_ = card_id;
 }
예제 #10
0
 public SignInPage(Context context)
     : base("Super", context)
 {
 }
예제 #11
0
 public TempLoginPage(Context context)
     : base("TempLoginPage", context)
 {
 }
예제 #12
0
파일: Bid.cs 프로젝트: ddksaku/futbot
 public Bid(Context context, long trade_id, int amount)
     : base("Bid", context)
 {
     this.amount_ = amount;
     this.trade_id_ = trade_id;
 }
예제 #13
0
파일: LoginPage.cs 프로젝트: ddksaku/futbot
 public LoginPage(Context context)
     : base("LoginPage", context)
 {
 }
예제 #14
0
 public LoginCheck(Context context)
     : base("LoginCheck", context)
 {
 }
예제 #15
0
파일: NextUrl.cs 프로젝트: ddksaku/futbot
 public NextUrl(Context context, bool check_cookies = true)
     : base("NextUrl", context)
 {
     this.check_cookies_ = check_cookies;
 }
예제 #16
0
 public FutbotScriptManager(FutbotScript script, AuthenticationInfo auth, Fifa fifa)
 {
     this._script = script;
     this._context = new Context(auth, fifa);
 }
예제 #17
0
 public ValidateQuestion(Context context)
     : base("ValidateQuestion", context)
 {
 }
예제 #18
0
 public Authentication(Context context)
     : base("Authentication", context)
 {
 }
예제 #19
0
 public SetPropertys(Context context)
     : base("SetProperty", context)
 {
 }
예제 #20
0
파일: Credits.cs 프로젝트: ddksaku/futbot
 public Credits(Context context)
     : base("Credits", context)
 {
 }