コード例 #1
0
ファイル: Generator.cs プロジェクト: artzub/LoggenCSG
 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
ファイル: Generator.cs プロジェクト: artzub/LoggenCSG
 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
ファイル: UDGenerator.cs プロジェクト: artzub/LoggenCSG
 public UDGenerator(string apiKey, IStater stater = null) :
     base(apiKey, stater)
 {
 }
コード例 #6
0
ファイル: RGenerator.cs プロジェクト: nick0816/LoggenCSG
 public RGenerator(Google.Apis.Authentication.IAuthenticator auth, IStater stater = null)
     : base(auth, stater)
 {
 }
コード例 #7
0
ファイル: RGenerator.cs プロジェクト: nick0816/LoggenCSG
 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)
 {
 }