예제 #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);
 }
예제 #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);
 }
예제 #3
0
 public Generator(string apiKey, IStater stater = null)
 {
     ApiKey = apiKey;
     Auth = null;
     Stater = stater;
     haveStater = stater != null;
     InitLogfile();
     WriteLog("Ctor simple apikey", this);
 }
예제 #4
0
 public Generator(string apiKey, IStater stater = null)
 {
     ApiKey     = apiKey;
     Auth       = null;
     Stater     = stater;
     haveStater = stater != null;
     InitLogfile();
     WriteLog("Ctor simple apikey", this);
 }
예제 #5
0
 public UDGenerator(string apiKey, IStater stater = null) :
     base(apiKey, stater)
 {
 }
예제 #6
0
 public RGenerator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null)
     : base(auth, stater)
 {
 }
예제 #7
0
 public RGenerator(string apiKey, IStater stater = null)
     : base(apiKey, stater)
 {
 }
예제 #8
0
 public WordsSearchGenerator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null)
     : base(auth, stater)
 {
 }
예제 #9
0
 public WordsSearchGenerator(string apiKey, IStater stater = null)
     : base(apiKey, stater)
 {
 }
예제 #10
0
 public WordsSearchGenerator(string apiKey, IStater stater = null)
     : base(apiKey, stater)
 {
 }