コード例 #1
0
 public Conversation(Settings.Bot settings, string googleApiKey, TwitterContext twitterContext)
 {
     _settings     = settings;
     _googleApiKey = googleApiKey;
     Become(() => Listening(twitterContext));
 }
コード例 #2
0
ファイル: Bot.cs プロジェクト: thzinc/BikeShareSystem
 public Bot(Settings.Bot settings, string googleApiKey)
 {
     _settings     = settings;
     _googleApiKey = googleApiKey;
     Become(Authorizing);
 }