Hi guys,
I have moved simpleGeo sample from VB(langsamu) to C#. This is an amazing feature for my needs but i not abled to fix the OAuth class that i can't initialize correctly to test-it. I haved posted my complete project in this bottom link including sample. The simpleGeo.dll implement base classes to connect and query simpleGeo. Client.cs is the main point to go & implementing ConsumerBase. need and Gmaps key and simpleGeo key easier to get. Can someone help me to fix.
Thanks for your help, Romi.
here VB : http github.com / simplegeo / simplegeo-dotnet
here C# : C# simpleGeo that need your help
namespace SimpleGeo { public class Client : DotNetOpenAuth.OAuth.ConsumerBase {
    private SimpleGeo.Description Services;
    private SimpleGeo.TokenManager Tokens;
    public Client(Version Version, string Key, string Secret): base(new Description(Version), new TokenManager(Key, Secret))
    {
        //added because not firing Public proprieties of base.
        Services = new Description(Version);//remplace Services
        Tokens = new TokenManager(Key, Secret);//remplace Token
    }
    ...
    public ServiceProviderDescription Service
    {
        get { return base.ServiceProvider; }
    }
    private IConsumerTokenManager Token
    {
        get { return base.TokenManager; }
    } 
    ....