示例#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)
 {
 }