public Generator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null) { ApiKey = null; Auth = auth; Stater = stater; haveStater = stater != null; InitLogfile(); WriteLog("Ctor auth", this); }
public Generator(string apiKey, IStater stater = null) { ApiKey = apiKey; Auth = null; Stater = stater; haveStater = stater != null; InitLogfile(); WriteLog("Ctor simple apikey", this); }
public UDGenerator(string apiKey, IStater stater = null) : base(apiKey, stater) { }
public RGenerator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null) : base(auth, stater) { }
public RGenerator(string apiKey, IStater stater = null) : base(apiKey, stater) { }
public WordsSearchGenerator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null) : base(auth, stater) { }
public WordsSearchGenerator(string apiKey, IStater stater = null) : base(apiKey, stater) { }