PushContextErrorEventArgs.cs 379 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace WindowsPhone.Recipes.Push.Client
  6. {
  7. public class PushContextErrorEventArgs : EventArgs
  8. {
  9. public Exception Exception { get; private set; }
  10. public PushContextErrorEventArgs(Exception exception)
  11. {
  12. Exception = exception;
  13. }
  14. }
  15. }