protected override void ProcessRecord()
 {
     Account a = new Account(Key);
     Feed f = new Feed(Feed, a);
     StringFeedItem i = new StringFeedItem(Key, Value);
     f.Post(i);
 } 
 protected override void ProcessRecord()
 {
     Account a = new Account(Key);
     Feed f = new Feed(Feed, a);
     WriteObject(f.Get());
 }