Ejemplo n.º 1
0
 public DeviceDetectionExceptionEventArgs(DeviceDetectionException exception)
 {
     _Exception = exception;
 }
Ejemplo n.º 2
0
 internal static void OnDeviceDetectionAttemptFailed(DeviceDetectionException exception)
 {
     if (DeviceDetectionAttemptFailed != null)
         DeviceDetectionAttemptFailed(exception.Device, new DeviceDetectionExceptionEventArgs(exception));
 }