protected override void ProcessRecord()
 {
     Account a = new Account(Key);
     Feed f = new Feed(Feed, a);
     StringFeedItem i = new StringFeedItem(Key, Value);
     f.Post(i);
 } 
Exemple #2
0
 public Feed(int id, Account account)
 {
     Id = id;
     AssociatedAccount = account;
 }
 protected override void ProcessRecord()
 {
     Account a = new Account(Key);
     Feed f = new Feed(Feed, a);
     WriteObject(f.Get());
 }