本文整理汇总了C#中System.Text.Decoder.Decode方法的典型用法代码示例。如果您正苦于以下问题:C# Decoder.Decode方法的具体用法?C# Decoder.Decode怎么用?C# Decoder.Decode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Text.Decoder
的用法示例。
在下文中一共展示了Decoder.Decode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
//第一个参数是第三方平台
//第二个参数是平台账号信息,若此处不设置Account,则需要在策略代码中设置默认值
var decoder = new Decoder(Platform.RuoKuai, new Account
{
SoftId = 0, // 软件ID(此ID需要注册开发者账号才可获得)
TypeId = 0, // 验证码类型(四位字符或其他类型的验证码,根据各平台设置不同值)
SoftKey = null, //软件Key (此Key也需要注册开发者账号才可获得)
UserName = null, //账号(此账号为打码平台的普通用户账号,开发者账号不能进行图片识别)
Password = null //密码
});
decoder.OnStart += (s, e) =>
{
Console.WriteLine("验证码("+e.FilePath+")识别启动……");
};
decoder.OnCompleted += (s, e) =>
{
Console.WriteLine("验证码(" + e.FilePath + ")识别完成:" + e.Code + ",耗时:" + (e.Milliseconds/1000) + "秒,线程ID:"+e.ThreadId);
};
decoder.OnError += (s, e) =>
{
Console.WriteLine("验证码识别出错:" + e.Exception.Message);
};
for (var i = 1; i <= 3; i++)
{
decoder.Decode("c:\\checkcode"+i+".png");
}
Console.ReadKey();
}