Ejemplo n.º 1
0
 public Generator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null)
 {
     ApiKey = null;
     Auth = auth;
     Stater = stater;
     haveStater = stater != null;
     InitLogfile();
     WriteLog("Ctor auth", this);
 }
Ejemplo n.º 2
0
 public Generator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null)
 {
     ApiKey     = null;
     Auth       = auth;
     Stater     = stater;
     haveStater = stater != null;
     InitLogfile();
     WriteLog("Ctor auth", this);
 }
Ejemplo n.º 3
0
 public Generator(string apiKey, IStater stater = null)
 {
     ApiKey = apiKey;
     Auth = null;
     Stater = stater;
     haveStater = stater != null;
     InitLogfile();
     WriteLog("Ctor simple apikey", this);
 }
Ejemplo n.º 4
0
 public Generator(string apiKey, IStater stater = null)
 {
     ApiKey     = apiKey;
     Auth       = null;
     Stater     = stater;
     haveStater = stater != null;
     InitLogfile();
     WriteLog("Ctor simple apikey", this);
 }
Ejemplo n.º 5
0
 public UDGenerator(string apiKey, IStater stater = null) :
     base(apiKey, stater)
 {
 }
Ejemplo n.º 6
0
 public RGenerator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null)
     : base(auth, stater)
 {
 }
Ejemplo n.º 7
0
 public RGenerator(string apiKey, IStater stater = null)
     : base(apiKey, stater)
 {
 }
Ejemplo n.º 8
0
 public WordsSearchGenerator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null)
     : base(auth, stater)
 {
 }
Ejemplo n.º 9
0
 public WordsSearchGenerator(string apiKey, IStater stater = null)
     : base(apiKey, stater)
 {
 }
Ejemplo n.º 10
0
 public WordsSearchGenerator(string apiKey, IStater stater = null)
     : base(apiKey, stater)
 {
 }