-
Notifications
You must be signed in to change notification settings - Fork 4
/
EventArgs.cs
886 lines (804 loc) · 27 KB
/
EventArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
using System;
namespace GeoFramework
{
/// <summary>Represents information about an angle when an angle-related event is raised.</summary>
/// <remarks>
/// This class is used for events which use an <strong>Angle</strong> as a
/// parameter.
/// </remarks>
/// <example>
/// This example demonstrates how to use <strong>AngleEventArgs</strong> when raising
/// an event.
/// <code lang="VB">
/// ' Declare a new event
/// Dim MyAngleEvent As AngleEventHandler
///
/// Sub Main()
/// ' Create an angle of 90°
/// Dim MyAngle As New Angle(90);
/// ' Raise our custom Event
/// RaiseEvent MyAngleEvent(Me, New AngleEventArgs(MyAngle));
/// End Sub
/// </code>
/// <code lang="CS">
/// // Declare a new event
/// AngleEventHandler MyAngleEvent;
///
/// void Main()
/// {
/// // Create an angle of 90°
/// Angle MyAngle = new Angle(90);
/// // Raise our custom event
/// if(MyAngleEvent != null)
/// MyAngleEvent(this, new AngleEventArgs(MyAngle));
/// }
/// </code>
/// </example>
/// <seealso cref="Angle">Angle Class</seealso>
/// <seealso cref="AngleEventHandler">AngleEventHandler Delegate</seealso>
public sealed class AngleEventArgs : EventArgs
{
private Angle _Angle;
/// <summary>
/// Creates a new instance containing the specified Angle object.
/// </summary>
public AngleEventArgs(Angle angle)
{
_Angle = angle;
}
/// <summary>
/// Represents information about an angular measurement when an angle-related event is raised.
/// </summary>
/// <value>An <strong>Angle</strong> object containing a property which has changed.</value>
/// <remarks>This class is used by the <see cref="Angle">Angle</see> class to provide notification when hours, minutes, or seconds properties have changed.</remarks>
/// <seealso cref="Angle">Angle Class</seealso>
public Angle Angle
{
get
{
return _Angle;
}
}
}
/// <summary>Represents information about a area when an area-related event is raised.</summary>
/// <example>
/// This example demonstrates how to use the <strong>AreaEventArgs</strong> class when
/// raising an event.
/// <code lang="VB">
/// ' Declare a new event
/// Dim MyAreaEvent As AreaEventHandler
///
/// Sub Main()
/// ' Create a Area of 125 kilometers
/// Dim MyArea As New Area(125, AreaUnit.SquareKilometers)
/// ' Raise our custom event
/// RaiseEvent MyAreaEvent(Me, New AreaEventArgs(MyArea))
/// End Sub
/// </code>
/// <code lang="CS">
/// // Declare a new event
/// AreaEventHandler MyAreaEvent;
///
/// void Main()
/// {
/// // Create a Area of 125 kilometers
/// Area MyArea = new Area(125, AreaUnit.SquareKilometers);
/// // Raise our custom event
/// if(MyAreaEvent != null)
/// MyAreaEvent(this, New AreaEventArgs(MyArea));
/// }
/// </code>
/// </example>
/// <seealso cref="Area">Area Class</seealso>
/// <seealso cref="AreaEventHandler">AreaEventHandler Delegate</seealso>
public sealed class AreaEventArgs : EventArgs
{
private Area _Area;
/// <summary>
/// Creates a new instance containing the specified Area object.
/// </summary>
public AreaEventArgs(Area value)
{
_Area = value;
}
/// <summary>
/// Represents information about a Area measurement when an Area-related event is raised.
/// </summary>
/// <value>A <strong>Area</strong> object containing a property which has changed.</value>
/// <remarks>This class is used by the <see cref="Area">Area</see> class to provide notification
/// when hours, minutes, or seconds properties have changed.</remarks>
/// <seealso cref="Area">Area Class</seealso>
public Area Area
{
get
{
return _Area;
}
}
}
/// <summary>Represents information about an angle when an angle-related event is raised.</summary>
/// <remarks>
/// This class is used for events which use an <strong>Azimuth</strong> as a
/// parameter.
/// </remarks>
/// <example>
/// This example demonstrates how to use <strong>AzimuthEventArgs</strong> when raising
/// an event.
/// <code lang="VB">
/// ' Declare a new event
/// Dim MyAzimuthEvent As AzimuthEventHandler
///
/// Sub Main()
/// ' Create an angle of 90°
/// Dim MyAzimuth As New Azimuth(90);
/// ' Raise our custom Event
/// RaiseEvent MyAzimuthEvent(Me, New AzimuthEventArgs(MyAzimuth));
/// End Sub
/// </code>
/// <code lang="CS">
/// // Declare a new event
/// AzimuthEventHandler MyAzimuthEvent;
///
/// void Main()
/// {
/// // Create an angle of 90°
/// Azimuth MyAzimuth = new Azimuth(90);
/// // Raise our custom event
/// if(MyAzimuthEvent != null)
/// MyAzimuthEvent(this, new AzimuthEventArgs(MyAzimuth));
/// }
/// </code>
/// </example>
/// <seealso cref="Azimuth">Azimuth Class</seealso>
/// <seealso cref="AzimuthEventHandler">AzimuthEventHandler Delegate</seealso>
public sealed class AzimuthEventArgs : EventArgs
{
private Azimuth _Azimuth;
/// <summary>
/// Creates a new instance containing the specified Azimuth object.
/// </summary>
public AzimuthEventArgs(Azimuth angle)
{
_Azimuth = angle;
}
/// <summary>
/// Represents information about an angular measurement when an angle-related event is raised.
/// </summary>
/// <value>An <strong>Azimuth</strong> object containing a property which has changed.</value>
/// <remarks>This class is used by the <see cref="Azimuth">Azimuth</see> class to provide notification when hours, minutes, or seconds properties have changed.</remarks>
/// <seealso cref="Azimuth">Azimuth Class</seealso>
public Azimuth Azimuth
{
get
{
return _Azimuth;
}
}
}
public sealed class CancelableEventArgs : EventArgs
{
private bool _Canceled;
public CancelableEventArgs(bool isCanceled)
{
_Canceled = isCanceled;
}
/// <summary>
/// Controls whether an operation is to be aborted.
/// </summary>
/// <remarks>This property, when set to True will signal that a pending operation should not execute. For example,
/// an event which is raised immediately before connecting would check this property to determine whether to
/// continue connecting, or exit.</remarks>
public bool Canceled
{
get
{
return _Canceled;
}
set
{
_Canceled = value;
}
}
}
/// <summary>Represents information about a distance when an distance-related event is raised.</summary>
/// <remarks>This class is typically used for events in the <see cref="Distance">Distance</see> class to
/// provide notification when hours, minutes, decimal minutes or seconds properties have changed.</remarks>
/// <example>This example demonstrates how to use this class when raising an event.
/// <code lang="VB">
/// ' Declare a new event
/// Dim MyDistanceEvent As DistanceEventHandler
/// ' Create a distance of 125 kilometers
/// Dim MyDistance As New Distance(125, DistanceUnit.Kilometers)
///
/// Sub Main()
/// ' Raise our custom event
/// RaiseEvent MyDistanceEvent(Me, New DistanceEventArgs(MyDistance))
/// End Sub
/// </code>
/// <code lang="C#">
/// // Declare a new event
/// DistanceEventHandler MyDistanceEvent;
/// // Create a distance of 125 kilometers
/// Distance MyDistance = new Distance(125, DistanceUnit.Kilometers);
///
/// void Main()
/// {
/// // Raise our custom event
/// MyDistanceEvent(this, New DistanceEventArgs(MyDistance));
/// }
/// </code>
/// </example>
/// <seealso cref="Distance">Distance Class</seealso>
/// <seealso cref="DistanceEventHandler">DistanceEventHandler Delegate</seealso>
public sealed class DistanceEventArgs : EventArgs
{
private Distance _Distance;
/// <summary>
/// Creates a new instance containing the specified Distance object.
/// </summary>
////[CLSCompliant(false)]
public DistanceEventArgs(Distance value)
{
_Distance = value;
}
/// <summary>
/// Represents information about a distance measurement when an distance-related event is raised.
/// </summary>
/// <value>A <strong>Distance</strong> object containing a property which has changed.</value>
/// <remarks>This class is used by the <see cref="Distance">Distance</see> class to provide notification
/// when hours, minutes, or seconds properties have changed.</remarks>
/// <seealso cref="Distance">Distance Class</seealso>
////[CLSCompliant(false)]
public Distance Distance
{
get
{
return _Distance;
}
}
}
/// <summary>Represents information about an angle when an angle-related event is raised.</summary>
/// <remarks>
/// This class is used for events which use an <strong>Elevation</strong> as a
/// parameter.
/// </remarks>
/// <example>
/// This example demonstrates how to use <strong>ElevationEventArgs</strong> when raising
/// an event.
/// <code lang="VB">
/// ' Declare a new event
/// Dim MyElevationEvent As ElevationEventHandler
///
/// Sub Main()
/// ' Create an angle of 90°
/// Dim MyElevation As New Elevation(90);
/// ' Raise our custom Event
/// RaiseEvent MyElevationEvent(Me, New ElevationEventArgs(MyElevation));
/// End Sub
/// </code>
/// <code lang="CS">
/// // Declare a new event
/// ElevationEventHandler MyElevationEvent;
///
/// void Main()
/// {
/// // Create an angle of 90°
/// Elevation MyElevation = new Elevation(90);
/// // Raise our custom event
/// if(MyElevationEvent != null)
/// MyElevationEvent(this, new ElevationEventArgs(MyElevation));
/// }
/// </code>
/// </example>
/// <seealso cref="Elevation">Elevation Class</seealso>
/// <seealso cref="ElevationEventHandler">ElevationEventHandler Delegate</seealso>
public sealed class ElevationEventArgs : EventArgs
{
private Elevation _Elevation;
/// <summary>
/// Creates a new instance containing the specified Elevation object.
/// </summary>
public ElevationEventArgs(Elevation angle)
{
_Elevation = angle;
}
/// <summary>
/// Represents information about an angular measurement when an angle-related event is raised.
/// </summary>
/// <value>An <strong>Elevation</strong> object containing a property which has changed.</value>
/// <remarks>This class is used by the <see cref="Elevation">Elevation</see> class to provide notification when hours, minutes, or seconds properties have changed.</remarks>
/// <seealso cref="Elevation">Elevation Class</seealso>
public Elevation Elevation
{
get
{
return _Elevation;
}
}
}
//public sealed class GeographicRectangleEventArgs : EventArgs
//{
// private GeographicRectangle _Rectangle;
// public GeographicRectangleEventArgs(GeographicRectangle rectangle)
// {
// _Rectangle = rectangle;
// }
// public GeographicRectangle GeographicRectangle
// {
// get
// {
// return _Rectangle;
// }
// }
//}
/// <summary>Represents information about an angle when an angle-related event is raised.</summary>
/// <remarks>
/// This class is used for events which use an <strong>Latitude</strong> as a
/// parameter.
/// </remarks>
/// <example>
/// This example demonstrates how to use <strong>LatitudeEventArgs</strong> when raising
/// an event.
/// <code lang="VB">
/// ' Declare a new event
/// Dim MyLatitudeEvent As LatitudeEventHandler
///
/// Sub Main()
/// ' Create an angle of 90°
/// Dim MyLatitude As New Latitude(90);
/// ' Raise our custom Event
/// RaiseEvent MyLatitudeEvent(Me, New LatitudeEventArgs(MyLatitude));
/// End Sub
/// </code>
/// <code lang="CS">
/// // Declare a new event
/// LatitudeEventHandler MyLatitudeEvent;
///
/// void Main()
/// {
/// // Create an angle of 90°
/// Latitude MyLatitude = new Latitude(90);
/// // Raise our custom event
/// if(MyLatitudeEvent != null)
/// MyLatitudeEvent(this, new LatitudeEventArgs(MyLatitude));
/// }
/// </code>
/// </example>
/// <seealso cref="Latitude">Latitude Class</seealso>
/// <seealso cref="LatitudeEventHandler">LatitudeEventHandler Delegate</seealso>
public sealed class LatitudeEventArgs : EventArgs
{
private Latitude _Latitude;
/// <summary>
/// Creates a new instance containing the specified Latitude object.
/// </summary>
public LatitudeEventArgs(Latitude angle)
{
_Latitude = angle;
}
/// <summary>
/// Represents information about an angular measurement when an angle-related event is raised.
/// </summary>
/// <value>An <strong>Latitude</strong> object containing a property which has changed.</value>
/// <remarks>This class is used by the <see cref="Latitude">Latitude</see> class to provide notification when hours, minutes, or seconds properties have changed.</remarks>
/// <seealso cref="Latitude">Latitude Class</seealso>
public Latitude Latitude
{
get
{
return _Latitude;
}
}
}
/// <summary>Represents information about an angle when an angle-related event is raised.</summary>
/// <remarks>
/// This class is used for events which use an <strong>Longitude</strong> as a
/// parameter.
/// </remarks>
/// <example>
/// This example demonstrates how to use <strong>LongitudeEventArgs</strong> when raising
/// an event.
/// <code lang="VB">
/// ' Declare a new event
/// Dim MyLongitudeEvent As LongitudeEventHandler
///
/// Sub Main()
/// ' Create an angle of 90°
/// Dim MyLongitude As New Longitude(90);
/// ' Raise our custom Event
/// RaiseEvent MyLongitudeEvent(Me, New LongitudeEventArgs(MyLongitude));
/// End Sub
/// </code>
/// <code lang="CS">
/// // Declare a new event
/// LongitudeEventHandler MyLongitudeEvent;
///
/// void Main()
/// {
/// // Create an angle of 90°
/// Longitude MyLongitude = new Longitude(90);
/// // Raise our custom event
/// if(MyLongitudeEvent != null)
/// MyLongitudeEvent(this, new LongitudeEventArgs(MyLongitude));
/// }
/// </code>
/// </example>
/// <seealso cref="Longitude">Longitude Class</seealso>
/// <seealso cref="LongitudeEventHandler">LongitudeEventHandler Delegate</seealso>
public sealed class LongitudeEventArgs : EventArgs
{
private Longitude _Longitude;
/// <summary>
/// Creates a new instance containing the specified Longitude object.
/// </summary>
public LongitudeEventArgs(Longitude longitude)
{
_Longitude = longitude;
}
/// <summary>
/// Represents information about an angular measurement when an angle-related event is raised.
/// </summary>
/// <value>An <strong>Longitude</strong> object containing a property which has changed.</value>
/// <remarks>This class is used by the <see cref="Longitude">Longitude</see> class to provide notification when hours, minutes, or seconds properties have changed.</remarks>
/// <seealso cref="Longitude">Longitude Class</seealso>
public Longitude Longitude
{
get
{
return _Longitude;
}
}
}
/*
public sealed class PolarCoordinateEventArgs : EventArgs
{
private PolarCoordinate _PolarCoordinate;
public PolarCoordinateEventArgs(PolarCoordinate polarCoordinate)
: base()
{
_PolarCoordinate = polarCoordinate;
}
public PolarCoordinate PolarCoordinate
{
get
{
return _PolarCoordinate;
}
}
}
public sealed class PolarCoordinateOrientationEventArgs : EventArgs
{
private PolarCoordinateOrientation _PolarCoordinateOrientation;
public PolarCoordinateOrientationEventArgs(PolarCoordinateOrientation polarCoordinateOrientation)
: base()
{
_PolarCoordinateOrientation = polarCoordinateOrientation;
}
public PolarCoordinateOrientation PolarCoordinateOrientation
{
get
{
return _PolarCoordinateOrientation;
}
}
}
*/
public sealed class PositionEventArgs : EventArgs
{
private Position _Position;
public PositionEventArgs(Position position)
: base()
{
_Position = position;
}
public Position Position
{
get
{
return _Position;
}
}
}
public sealed class RadianEventArgs : EventArgs
{
private Radian _Radians;
public RadianEventArgs(Radian radian)
{
_Radians = radian;
}
public Radian Radians
{
get
{
return _Radians;
}
}
}
public sealed class SpeedEventArgs : EventArgs
{
private Speed _Speed;
public SpeedEventArgs(Speed speed)
{
_Speed = speed;
}
public Speed Speed
{
get
{
return _Speed;
}
}
}
//public sealed class TimeoutExceptionEventArgs : EventArgs
//{
// private TimeoutException _Exception;
// public TimeoutExceptionEventArgs(TimeoutException exception)
// {
// _Exception = exception;
// }
// public TimeoutException TimeoutException
// {
// get
// {
// return _Exception;
// }
// }
//}
public sealed class TimeSpanEventArgs : EventArgs
{
private TimeSpan _TimeSpan;
/// <summary>
/// Creates a new instance containing the specified TimeSpan object.
/// </summary>
/// <param name="timeSpan">A <strong>TimeSpan</strong> object describing a length of time.</param>
/// <remarks></remarks>
/// <seealso cref="TimeSpan">TimeSpan Property</seealso>
/// <seealso cref="System.TimeSpan">TimeSpan Structure</seealso>
public TimeSpanEventArgs(TimeSpan timeSpan)
{
_TimeSpan = timeSpan;
}
/// <summary>
/// Indicates a length of time which is the target of the event.
/// </summary>
/// <value>A <strong>TimeSpan</strong> object describing a length of time.</value>
/// <remarks></remarks>
/// <seealso cref="System.TimeSpan">TimeSpan Structure</seealso>
public TimeSpan TimeSpan
{
get
{
return _TimeSpan;
}
}
}
///// <summary>
///// Represents information about a byte array when a byte array-related event is
///// raised.
///// </summary>
///// <remarks>This class is used for events which use a byte array as a parameter.</remarks>
///// <example>
///// This example demonstrates how to use <strong>ByteArrayEventArgs</strong> when
///// raising an event.
///// <code lang="VB" title="[New Example]">
///// ' Declare a new event
///// Dim MyByteArrayEvent As ByteArrayEventHandler
/////
///// Sub Main()
///// ' Create a byte array
///// Dim MyArray As New Byte(50);
///// ' Raise our custom Event
///// RaiseEvent MyByteArrayEvent(Me, New ByteArrayEventArgs(MyByteArray));
///// End Sub
///// </code>
///// <code lang="CS" title="[New Example]">
///// // Declare a new event
///// ByteArrayEventHandler MyByteArrayEvent;
/////
///// void Main()
///// {
///// // Create a byte array
///// byte[] MyByteArray = new byte(90);
///// // Raise our custom event
///// if(MyByteArrayEvent != null)
///// MyByteArrayEvent(this, new ByteArrayEventArgs(MyByteArray));
///// }
///// </code>
///// </example>
//public sealed class ByteArrayEventArgs : EventArgs
//{
// private byte[] _Bytes;
// public ByteArrayEventArgs(byte[] bytes)
// {
// _Bytes = bytes;
// }
// public byte[] Bytes
// {
// get
// {
// return _Bytes;
// }
// }
//}
//public sealed class ArrayEventArgs : EventArgs
//{
// private Array _Array;
// public static new readonly ArrayEventArgs Empty = new ArrayEventArgs(null);
// public ArrayEventArgs(Array array)
// {
// _Array = array;
// }
// public Array Array
// {
// get
// {
// return _Array;
// }
// }
//}
/// <summary>
/// Represents information about the date and time reported by the GPS device.
/// </summary>
#if !PocketPC || DesignTime
#if Framework20
//[Obfuscation(Feature = "renaming", Exclude = true, ApplyToMembers = true)]
//[Obfuscation(Feature = "controlflow", Exclude = true, ApplyToMembers = true)]
//[Obfuscation(Feature = "stringencryption", Exclude = false, ApplyToMembers = true)]
#endif
#endif
public sealed class DateTimeEventArgs : EventArgs
{
private DateTime _DateTime;
private bool _SystemClockUpdated;
/// <summary>
/// Creates a new instance.
/// </summary>
/// <param name="dateTime">A DateTime object containing a date and time reported by the GPS device.</param>
public DateTimeEventArgs(System.DateTime dateTime)
{
_DateTime = dateTime;
}
/// <summary>
/// Creates a new instance.
/// </summary>
/// <param name="dateTime">A DateTime object containing a date and time reported by the GPS device.</param>
/// <param name="systemClockUpdated">Indicates whether the system clock was updated to match this DateTime.</param>
public DateTimeEventArgs(System.DateTime dateTime, bool systemClockUpdated)
{
_DateTime = dateTime;
_SystemClockUpdated = systemClockUpdated;
}
/// <summary>
/// A date and time value in UTC time (not adjusted for the local time zone).
/// </summary>
/// <value>A DateTime object containing a date and time reported by the GPS device.</value>
/// <remarks>This date and time value is not adjusted to the local time zone. Use the
/// <see cref="System.DateTime.ToLocalTime">ToLocalTime</see> method to adjust to local time.</remarks>
/// <seealso cref="System.DateTime">DateTime Class</seealso>
/// <seealso cref="System.DateTime.ToLocalTime">ToLocalTime Method (DateTime Class)</seealso>
public System.DateTime DateTime
{
get
{
return _DateTime;
}
}
/// <summary>
/// Indicates whether the system clock updated to match the <see cref="DateTime"/>.
/// </summary>
/// <value>
/// <see langword="true">True</see> if the system clock was updated; otherwise, <see langword="false"/>.
/// The default is <see langword="false"/>.
/// </value>
public bool SystemClockUpdated
{
get
{
return _SystemClockUpdated;
}
}
}
/// <summary>
/// Represents information about an exception when an error-related event is raised.
/// </summary>
/// <remarks>This object is used throughout the GPS.NET framework to provide notification when
/// either of two situations occur:
///
/// <list>
/// <item>An exception is thrown which cannot be trapped via a Try..Catch block (such as from a separate thread)</item>
/// <item>An exception is thrown which can be recovered from and should not halt the current operation.</item>
/// </list>
/// Most frequently, this class is used when a parsing exception occurs via the Parse method or during automatic
/// data collection.</remarks>
/// <example>This example demonstrates how to use this class when raising an event.
/// <code lang="VB">
/// ' Create a new exception
/// Dim MyException As New ApplicationException("The error was successfully created.")
/// ' Declare a new event
/// Dim MyErrorEvent As ExceptionEventHandler
///
/// Sub Main()
/// ' Raise our custom event
/// RaiseEvent MyErrorEvent(Me, New ExceptionEventArgs(MyException))
/// End Sub
/// </code>
/// <code lang="C#">
/// // Create a new exception
/// ApplicationException MyException = new ApplicationException("The error was successfully created.")
/// // Declare a new event
/// ExceptionEventHandler MyErrorEvent;
///
/// void Main()
/// {
/// // Raise our custom event
/// MySatelliteEvent(this, New ExceptionEventArgs(MyException));
/// }
/// </code>
/// </example>
#if !PocketPC || DesignTime
#if Framework20
//[Obfuscation(Feature = "renaming", Exclude = true, ApplyToMembers = true)]
//[Obfuscation(Feature = "controlflow", Exclude = true, ApplyToMembers = true)]
//[Obfuscation(Feature = "stringencryption", Exclude = false, ApplyToMembers = true)]
#endif
#endif
public class ExceptionEventArgs : EventArgs
{
private Exception _Exception;
/// <summary>
/// Creates a new instance containing the specified exception object.
/// </summary>
/// <param name="exception">An <strong>Exception</strong> object or derivitive describing the error.</param>
public ExceptionEventArgs(Exception exception)
{
_Exception = exception;
}
/// <summary>
/// Indicates information about the error and its location within a module.
/// </summary>
/// <value>An <strong>ApplicationException</strong> object or derivitive describing the error.</value>
public Exception Exception
{
get
{
return _Exception;
}
}
}
#if !PocketPC || DesignTime
#if Framework20
//[Obfuscation(Feature = "renaming", Exclude = true, ApplyToMembers = true)]
//[Obfuscation(Feature = "controlflow", Exclude = true, ApplyToMembers = true)]
//[Obfuscation(Feature = "stringencryption", Exclude = false, ApplyToMembers = true)]
#endif
#endif
public class ProgressEventArgs : EventArgs
{
private int _Current;
private int _Total;
public new static readonly ProgressEventArgs Empty = new ProgressEventArgs(0, 0);
public ProgressEventArgs(int total)
{
_Total = total;
}
public ProgressEventArgs(int current, int total)
{
_Current = current;
_Total = total;
}
public int Total
{
get
{
return _Total;
}
}
public int Current
{
get
{
return _Current;
}
}
}
}