Esempio n. 1
0
 protected virtual void OnServerError(StashFetcherServerErrorEventArgs e) {
     var handler = ServerError;
     if (handler != null) {
         handler(this, e);
     }
 }
Esempio n. 2
0
 void _stashFetcher_ServerError(object sender, StashFetcherServerErrorEventArgs e) {
     lblStatus.Text = "Server error: " + e.Message;
 }