示例#1
0
 public void RequestMotdUpdate()
 {
     Transport.GetMotd()
     .ObserveOnDispatcher()
     .Finally(UpdateMotd)
     .Subscribe <string>(
         motd => SaveMotd(motd),
         error => SaveMotd(null));
 }