Guest User

Untitled

a guest
Jul 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. if (Intent.Extras != null)
  2. {
  3. foreach (var key in Intent.Extras.KeySet())
  4. {
  5. if (key != null)
  6. {
  7. var value = Intent.Extras.GetString(key);
  8. Log.Debug(TAG, "Key: {0} Value: {1}", key, value);
  9. }
  10. }
  11. }
  12.  
  13. intent.PutExtra("Key", "value");
Add Comment
Please, Sign In to add comment