Project DescriptionA way to access the webservice of Favi.co.nz quickly from Microsoft .NET.
var ctx = new FaviconContext();
var f = from fav in ctx.Favicons
where fav.Url == new Uri("http://www.twitter.com")
select fav;
foreach(var favicon in f)
{
Console.WriteLine(favicon.FaviconUri.ToString());
}
Last edited Jan 12 at 9:16 PM by AlexdeGroot, version 2
|
|