My favorites | Sign in
Project Logo
                
Code license: MIT License
Labels: .NET, API, Ajax, restfull, Language, Search, Translate
Show all Featured wiki pages:
Changes
People details
Project owners:
  iron9light

Provides simple, unofficial, .NET Framework APIs for using Google Ajax RestFULL APIs (Search API, Language API etc.)

Google Translate API for .NET 0.3

Description:

Provides a simple, unofficial, .NET Framework API for using Google Ajax Language API service.

Feature:

Required:

Example:

    string text = "我喜欢跑步。";
    TranslateClient client = new TranslateClient(/* Enter the URL of your site here */);
    string translated = client.Translate(text, Language.ChineseSimplified, Language.English);
    Console.WriteLine(translated);
    // I like running.

Google Search API for .NET 0.3

Description:

Provides a simple, unofficial, .NET Framework API for using Google Ajax Search API service.

Feature:

Google Search APIs State
Google Web Search API supported
Google Local Search API supported
Google Video Search API supported
Google Blog Search API supported
Google News Search API supported
Google Book Search API supported
Google Image Search API supported
Google Patent Search API supported

Required:

Example:

    // Search 32 results of keyword : "Google APIs for .NET"
    GwebSearchClient client = new GwebSearchClient(/* Enter the URL of your site here */);
    IList<IWebResult> results = client.Search("Google API for .NET", 32);  
    foreach(IWebResult result in results)  
    {  
        Console.WriteLine("[{0}] {1} => {2}", result.Title, result.Content, result.Url);  
    } 








Hosted by Google Code