Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. private void Notify( JArray notifications )
  2. {
  3. foreach ( JObject obj in notifications )
  4. {
  5. string type = (string)obj["type"];
  6. string title = (string)obj["title"];
  7. string content = (string)obj["content"];
  8. if ( type == "alert" && content != null )
  9. {
  10. MessageBox.Show( content, title, MessageBoxButtons.OK, MessageBoxIcon.None, MessageBoxDefaultButton.Button1 );
  11. }
  12. }
  13. }
Add Comment
Please, Sign In to add comment