コード例 #1
0
 protected override void ProcessRecord()
 {
     Account a = new Account(Key);
     Feed f = new Feed(Feed, a);
     StringFeedItem i = new StringFeedItem(Key, Value);
     f.Post(i);
 } 
コード例 #2
0
ファイル: Feed.cs プロジェクト: just8/Open-Source-Automation
 public Feed(int id, Account account)
 {
     Id = id;
     AssociatedAccount = account;
 }
コード例 #3
0
 protected override void ProcessRecord()
 {
     Account a = new Account(Key);
     Feed f = new Feed(Feed, a);
     WriteObject(f.Get());
 }