Exemplo n.º 1
0
 /// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 /// <param name="debug">Include debuggin info</param>
 public Factual(string oAuthKey, string oAuthSecret, bool debug)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
     Debug = debug;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 /// <param name="debug">Include debuggin info</param>
 public Factual(string oAuthKey, string oAuthSecret, bool debug)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
     Debug = debug;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 public Factual(string oAuthKey, string oAuthSecret)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Create an instance of Factual .NET driver
 /// </summary>
 /// <param name="oAuthKey">OAuth consumer key</param>
 /// <param name="oAuthSecret">Oauth consumer secret key</param>
 public Factual(string oAuthKey, string oAuthSecret)
 {
     _factualAuthenticator = new OAuth2LeggedAuthenticator(oAuthKey, oAuthSecret);
 }