├── .gitattributes ├── .gitignore ├── .travis.yml ├── 2Captcha.Sandbox ├── 2Captcha.Sandbox.csproj ├── Program.cs ├── TestCaptcha.png └── TestCaptcha2.png ├── 2Captcha.sln ├── 2Captcha ├── 2Captcha.csproj ├── Enums │ ├── FileType.cs │ └── ProxyType.cs ├── _2Captcha.cs └── _2CaptchaResult.cs ├── LICENSE ├── README.md └── resources └── 2captcha.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/.travis.yml -------------------------------------------------------------------------------- /2Captcha.Sandbox/2Captcha.Sandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha.Sandbox/2Captcha.Sandbox.csproj -------------------------------------------------------------------------------- /2Captcha.Sandbox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha.Sandbox/Program.cs -------------------------------------------------------------------------------- /2Captcha.Sandbox/TestCaptcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha.Sandbox/TestCaptcha.png -------------------------------------------------------------------------------- /2Captcha.Sandbox/TestCaptcha2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha.Sandbox/TestCaptcha2.png -------------------------------------------------------------------------------- /2Captcha.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha.sln -------------------------------------------------------------------------------- /2Captcha/2Captcha.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha/2Captcha.csproj -------------------------------------------------------------------------------- /2Captcha/Enums/FileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha/Enums/FileType.cs -------------------------------------------------------------------------------- /2Captcha/Enums/ProxyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha/Enums/ProxyType.cs -------------------------------------------------------------------------------- /2Captcha/_2Captcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha/_2Captcha.cs -------------------------------------------------------------------------------- /2Captcha/_2CaptchaResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/2Captcha/_2CaptchaResult.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/README.md -------------------------------------------------------------------------------- /resources/2captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaczero/2Captcha/HEAD/resources/2captcha.png --------------------------------------------------------------------------------