-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathRun.cs
203 lines (155 loc) · 7.26 KB
/
Run.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
using System;
using System.Runtime.ConstrainedExecution;
using TwoCaptcha.Examples;
public class Run
{
public static void Main(string[] args)
{
string classToRun = args[0];
string apiKey = args[1];
switch (classToRun)
{
case "TextExample":
TextExample textExample = new TextExample(apiKey);
break;
case "TextOptionsExample":
TextOptionsExample TextOptionsExample = new TextOptionsExample(apiKey);
break;
case "MTCaptchaExample":
MTCaptchaExample mtCaptchaExample = new MTCaptchaExample(apiKey);
break;
case "CutcaptchaExample":
CutcaptchaExample cutcaptchaExample = new CutcaptchaExample(apiKey);
break;
case "CyberSiARAExample":
CyberSiARAExample cyberSiARAExample = new CyberSiARAExample(apiKey);
break;
case "DataDomeExample":
DataDomeExample dataDomeExample = new DataDomeExample(apiKey);
break;
case "AtbCAPTCHAExample":
AtbCAPTCHAExample atbCAPTCHAExample = new AtbCAPTCHAExample(apiKey);
break;
case "TencentExample":
TencentExample tencentExample = new TencentExample(apiKey);
break;
case "AmazonWafExample":
AmazonWafExample amazonWafExample = new AmazonWafExample(apiKey);
break;
case "AmazonWafOptionsExample":
AmazonWafOptionsExample amazonWafOptionsExample = new AmazonWafOptionsExample(apiKey);
break;
case "AudioCaptchaExample":
AudioCaptchaExample AudioCaptchaExample = new AudioCaptchaExample(apiKey);
break;
case "AudioCaptchaOptionsExample":
AudioCaptchaOptionsExample AudioCaptchaOptionsExample = new AudioCaptchaOptionsExample(apiKey);
break;
case "CanvasExample":
CanvasExample CanvasExample = new CanvasExample(apiKey);
break;
case "CanvasBase64Example":
CanvasBase64Example CanvasBase64Example = new CanvasBase64Example(apiKey);
break;
case "CanvasOptionsExample":
CanvasOptionsExample CanvasOptionsExample = new CanvasOptionsExample(apiKey);
break;
case "CapyExample":
CapyExample CapyExample = new CapyExample(apiKey);
break;
case "CapyOptionsExample":
CapyOptionsExample CapyOptionsExample = new CapyOptionsExample(apiKey);
break;
case "CoordinatesExample":
CoordinatesExample CoordinatesExample = new CoordinatesExample(apiKey);
break;
case "CoordinatesBase64Example":
CoordinatesBase64Example CoordinatesBase64Example = new CoordinatesBase64Example(apiKey);
break;
case "CoordinatesOptionsExample":
CoordinatesOptionsExample CoordinatesOptionsExample = new CoordinatesOptionsExample(apiKey);
break;
case "FriendlyCaptchaExample":
FriendlyCaptchaExample FriendlyCaptchaExample = new FriendlyCaptchaExample(apiKey);
break;
case "FunCaptchaExample":
FunCaptchaExample FunCaptchaExample = new FunCaptchaExample(apiKey);
break;
case "FunCaptchaOptionsExample":
FunCaptchaOptionsExample FunCaptchaOptionsExample = new FunCaptchaOptionsExample(apiKey);
break;
case "GeeTestExample":
GeeTestExample GeeTestExample = new GeeTestExample(apiKey);
break;
case "GeeTestOptionsExample":
GeeTestOptionsExample GeeTestOptionsExample = new GeeTestOptionsExample(apiKey);
break;
case "GeeTestV4Example":
GeeTestV4Example GeeTestV4Example = new GeeTestV4Example(apiKey);
break;
case "GeeTestV4OptionsExample":
GeeTestV4OptionsExample GeeTestV4OptionsExample = new GeeTestV4OptionsExample(apiKey);
break;
case "GridExample":
GridExample GridExample = new GridExample(apiKey);
break;
case "GridBase64Example":
GridBase64Example GridBase64Example = new GridBase64Example(apiKey);
break;
case "GridOptionsExample":
GridOptionsExample GridOptionsExample = new GridOptionsExample(apiKey);
break;
case "KeyCaptchaExample":
KeyCaptchaExample KeyCaptchaExample = new KeyCaptchaExample(apiKey);
break;
case "KeyCaptchaOptionsExample":
KeyCaptchaOptionsExample KeyCaptchaOptionsExample = new KeyCaptchaOptionsExample(apiKey);
break;
case "LeminExample":
LeminExample LeminExample = new LeminExample(apiKey);
break;
case "LeminOptionsExample":
LeminOptionsExample LeminOptionsExample = new LeminOptionsExample(apiKey);
break;
case "NormalExample":
NormalExample NormalExample = new NormalExample(apiKey);
break;
case "NormalBase64Example":
NormalBase64Example NormalBase64Example = new NormalBase64Example(apiKey);
break;
case "NormalOptionsExample":
NormalOptionsExample NormalOptionsExample = new NormalOptionsExample(apiKey);
break;
case "ReCaptchaV2Example":
ReCaptchaV2Example ReCaptchaV2Example = new ReCaptchaV2Example(apiKey);
break;
case "ReCaptchaV2OptionsExample":
ReCaptchaV2OptionsExample ReCaptchaV2OptionsExample = new ReCaptchaV2OptionsExample(apiKey);
break;
case "ReCaptchaV3Example":
ReCaptchaV3Example ReCaptchaV3Example = new ReCaptchaV3Example(apiKey);
break;
case "ReCaptchaV3OptionsExample":
ReCaptchaV3OptionsExample ReCaptchaV3OptionsExample = new ReCaptchaV3OptionsExample(apiKey);
break;
case "RotateExample":
RotateExample RotateExample = new RotateExample(apiKey);
break;
case "RotateOptionsExample":
RotateOptionsExample RotateOptionsExample = new RotateOptionsExample(apiKey);
break;
case "TurnstileExample":
TurnstileExample TurnstileExample = new TurnstileExample(apiKey);
break;
case "TurnstileOptionsExample":
TurnstileOptionsExample TurnstileOptionsExample = new TurnstileOptionsExample(apiKey);
break;
case "YandexExample":
YandexExample YandexExample = new YandexExample(apiKey);
break;
case "YandexOptionsExample":
YandexOptionsExample YandexOptionsExample = new YandexOptionsExample(apiKey);
break;
}
}
}