-
Notifications
You must be signed in to change notification settings - Fork 6
/
RossCarlson.Vatsim.Vpilot.Plugins.xml
761 lines (761 loc) · 35.6 KB
/
RossCarlson.Vatsim.Vpilot.Plugins.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>RossCarlson.Vatsim.Vpilot.Plugins</name>
</assembly>
<members>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs">
<summary>
Arguments for the AircraftUpdated event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Callsign">
<summary>
The aircraft callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Latitude">
<summary>
The aircraft latitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Longitude">
<summary>
The aircraft longitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Altitude">
<summary>
The aircraft altitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.PressureAltitude">
<summary>
The aircraft's pressure altitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Pitch">
<summary>
The aircraft pitch.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Bank">
<summary>
The aircraft bank.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Heading">
<summary>
The aircraft heading.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.Speed">
<summary>
The aircraft speed.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftUpdatedEventArgs.#ctor(System.String,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The aircraft callsign.</param>
<param name="lat">The aircraft latitude.</param>
<param name="lon">The aircraft longitude.</param>
<param name="alt">The aircraft altitude.</param>
<param name="pressureAlt">The aircraft's pressure altitude.</param>
<param name="pitch">The aircraft pitch.</param>
<param name="bank">The aircraft bank.</param>
<param name="heading">The aircraft heading.</param>
<param name="speed">The aircraft speed.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftDeletedEventArgs">
<summary>
Arguments for the AircraftDeleted event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftDeletedEventArgs.Callsign">
<summary>
The aircraft callsign.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftDeletedEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The aircraft callsign.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs">
<summary>
Arguments for the AircraftAdded event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Callsign">
<summary>
The aircraft callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.TypeCode">
<summary>
The aircraft type code.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Latitude">
<summary>
The aircraft latitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Longitude">
<summary>
The aircraft longitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Altitude">
<summary>
The aircraft altitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.PressureAltitude">
<summary>
The aircraft's pressure altitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Pitch">
<summary>
The aircraft pitch.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Bank">
<summary>
The aircraft bank.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Heading">
<summary>
The aircraft heading.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.Speed">
<summary>
The aircraft speed.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.AircraftAddedEventArgs.#ctor(System.String,System.String,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The aircraft callsign.</param>
<param name="typeCode">The aircraft type code.</param>
<param name="lat">The aircraft latitude.</param>
<param name="lon">The aircraft longitude.</param>
<param name="alt">The aircraft altitude.</param>
<param name="pressureAlt">The aircraft's pressure altitude.</param>
<param name="pitch">The aircraft pitch.</param>
<param name="bank">The aircraft bank.</param>
<param name="heading">The aircraft heading.</param>
<param name="speed">The aircraft speed.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.PrivateMessageReceivedEventArgs">
<summary>
Arguments for the PrivateMessageReceived event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.PrivateMessageReceivedEventArgs.From">
<summary>
The sender's callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.PrivateMessageReceivedEventArgs.Message">
<summary>
The message contents.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.PrivateMessageReceivedEventArgs.#ctor(System.String,System.String)">
<summary>
Initializes a new instance.
</summary>
<param name="from">The sender's callsign.</param>
<param name="message">The message contents.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.NetworkConnectedEventArgs">
<summary>
Arguments for the NetworkConnected event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.NetworkConnectedEventArgs.Callsign">
<summary>
The callsign specified for the connection.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.NetworkConnectedEventArgs.TypeCode">
<summary>
The aircraft type code specified for the connection.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.NetworkConnectedEventArgs.SelcalCode">
<summary>
The SELCAL code specified for the connection, if any.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.NetworkConnectedEventArgs.ObserverMode">
<summary>
Whether or not the connection is in observer mode.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.NetworkConnectedEventArgs.#ctor(System.String,System.String,System.String,System.Boolean)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The callsign specified for the connection.</param>
<param name="typeCode">The aircraft type code specified for the connection.</param>
<param name="selcalCode">The SELCAL code specified for the connection, if any.</param>
<param name="observerMode">Whether or not the connection is in observer mode.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.RadioMessageReceivedEventArgs">
<summary>
Arguments for the RadioMessageReceived event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.RadioMessageReceivedEventArgs.Frequencies">
<summary>
The list of frequencies the message was transmitted on. The leading 1 and the decimal point are dropped. E.g. 123.725 is formatted as 23725.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.RadioMessageReceivedEventArgs.From">
<summary>
The sender's callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.RadioMessageReceivedEventArgs.Message">
<summary>
The message contents.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.RadioMessageReceivedEventArgs.#ctor(System.Int32[],System.String,System.String)">
<summary>
Initializes a new instance.
</summary>
<param name="frequencies">The list of frequencies the message was transmitted on. The leading 1 and the decimal point are dropped. E.g. 123.725 is formatted as 23725.</param>
<param name="from">The sender's callsign.</param>
<param name="message">The message contents.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.BroadcastMessageReceivedEventArgs">
<summary>
Arguments for the BroadcastMessageReceived event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.BroadcastMessageReceivedEventArgs.From">
<summary>
The sender's callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.BroadcastMessageReceivedEventArgs.Message">
<summary>
The message contents.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.BroadcastMessageReceivedEventArgs.#ctor(System.String,System.String)">
<summary>
Initializes a new instance.
</summary>
<param name="from">The sender's callsign.</param>
<param name="message">The message contents.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.MetarReceivedEventArgs">
<summary>
Arguments for the MetarReceived event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.MetarReceivedEventArgs.Metar">
<summary>
The full raw METAR.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.MetarReceivedEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance.
</summary>
<param name="metar">The full raw METAR.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.AtisReceivedEventArgs">
<summary>
Arguments for the AtisReceived event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AtisReceivedEventArgs.From">
<summary>
The sender's callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.AtisReceivedEventArgs.Lines">
<summary>
The ATIS lines.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.AtisReceivedEventArgs.#ctor(System.String,System.Collections.Generic.List{System.String})">
<summary>
Initializes a new instance.
</summary>
<param name="from">The sender's callsign.</param>
<param name="lines">The ATIS lines.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerAddedEventArgs">
<summary>
Arguments for the ControllerAdded event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerAddedEventArgs.Callsign">
<summary>
The controller's callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerAddedEventArgs.Frequency">
<summary>
The controller's primary frequency.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerAddedEventArgs.Latitude">
<summary>
The controller's latitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerAddedEventArgs.Longitude">
<summary>
The controller's longitude.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerAddedEventArgs.#ctor(System.String,System.Int32,System.Double,System.Double)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The controller's callsign.</param>
<param name="frequency">The controller's primary frequency.</param>
<param name="latitude">The controller's latitude.</param>
<param name="longitude">The controller's longitude.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerDeletedEventArgs">
<summary>
Arguments for the ControllerDeleted event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerDeletedEventArgs.Callsign">
<summary>
The controller's callsign.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerDeletedEventArgs.#ctor(System.String)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The controller's callsign.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerFrequencyChangedEventArgs">
<summary>
Arguments for the ControllerFrequencyChanged event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerFrequencyChangedEventArgs.Callsign">
<summary>
The controller's callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerFrequencyChangedEventArgs.NewFrequency">
<summary>
The controller's new primary frequency.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerFrequencyChangedEventArgs.#ctor(System.String,System.Int32)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The controller's callsign.</param>
<param name="newFrequency">The controller's new primary frequency.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerLocationChangedEventArgs">
<summary>
Arguments for the ControllerLocationChanged event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerLocationChangedEventArgs.Callsign">
<summary>
The controller's callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerLocationChangedEventArgs.NewLatitude">
<summary>
The controller's new latitude.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerLocationChangedEventArgs.NewLongitude">
<summary>
The controller's new longitude.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.ControllerLocationChangedEventArgs.#ctor(System.String,System.Double,System.Double)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The controller's callsign.</param>
<param name="newLatitude">The controller's new latitude.</param>
<param name="newLongitude">The controller's new longitude.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.SelcalAlertReceivedEventArgs">
<summary>
Arguments for the SelcalAlertReceived event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.SelcalAlertReceivedEventArgs.Frequencies">
<summary>
The frequencies on which the SELCAL alert was received.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.SelcalAlertReceivedEventArgs.From">
<summary>
The callsign for the controller that sent the SELCAL alert.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.SelcalAlertReceivedEventArgs.#ctor(System.Int32[],System.String)">
<summary>
Initializes a new instance.
</summary>
<param name="frequencies">The frequencies on which the alert was received.</param>
<param name="from">The callsign for the controller that sent the SELCAL alert.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs">
<summary>
Arguments for the FileFlightPlanReceived event.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.Callsign">
<summary>
The callsign.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.DepartureAirport">
<summary>
The departure airport. Three or four characters, upper case.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.DestinationAirport">
<summary>
The destination airport. Three or four characters, upper case.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.AlternateAirport">
<summary>
The alternate airport. Three or four characters, upper case.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.CruiseAltitude">
<summary>
The planned cruise altitude in feet.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.CruiseSpeed">
<summary>
The planned cruise speed in knots.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.Route">
<summary>
The flight plan route.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.Remarks">
<summary>
The remarks.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.Equipment">
<summary>
The filed equipment code optionally including a prefix and/or suffix.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.DepartureTime">
<summary>
The departure time as HHMM zulu.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.EnrouteHours">
<summary>
Estimated time enroute, hours portion.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.EnrouteMinutes">
<summary>
Estimated time enroute, minutes portion.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.FuelHours">
<summary>
Fuel on board, hours portion.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.FuelMinutes">
<summary>
Fuel on board, minutes portion.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.IsVfr">
<summary>
Set to true if this is a VFR flight plan.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Events.FlightPlanReceivedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Initializes a new instance.
</summary>
<param name="callsign">The callsign.</param>
<param name="departureAirport">The departure airport. Three or four characters, upper case.</param>
<param name="destinationAirport">The destination airport. Three or four characters, upper case.</param>
<param name="alternateAirport">The alternate airport. Three or four characters, upper case.</param>
<param name="cruiseAltitude">The planned cruise altitude in feet.</param>
<param name="cruiseSpeed">The planned cruise speed in knots.</param>
<param name="route">The flight plan route.</param>
<param name="remarks">The remarks.</param>
<param name="equipment">The filed equipment code optionally including a prefix and/or suffix.</param>
<param name="departureTime">The departure time as HHMM zulu.</param>
<param name="enrouteHours">Estimated time enroute, hours portion.</param>
<param name="enrouteMinutes">Estimated time enroute, minutes portion.</param>
<param name="fuelHours">Fuel on board, hours portion.</param>
<param name="fuelMinutes">Fuel on board, minutes portion.</param>
<param name="isVfr">Set to true if this is a VFR flight plan.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.AlreadyConnectedException">
<summary>
The exception that is thrown when a connection request is made while vPilot is already connected to the network.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.AlreadyConnectedException.#ctor">
<summary>
Initializes a new instance.
</summary>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.SimNotReadyException">
<summary>
The exception that is thrown when a request is made to connect to the network when vPilot does not have an active connection to the simulator.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.SimNotReadyException.#ctor">
<summary>
Initializes a new instance.
</summary>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.NotTransmittingException">
<summary>
The exception that is thrown when neither COM radio is configured for transmit or the avionics power is off, and a request is made to transmit a radio message.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.NotTransmittingException.#ctor">
<summary>
Initializes a new instance.
</summary>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.NotConnectedException">
<summary>
The exception that is thrown when vPilot is not connected to the network when a request is made which requires a connection.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.Exceptions.NotConnectedException.#ctor">
<summary>
Initializes a new instance.
</summary>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.IBroker">
<summary>
The vPilot plugin broker interface.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.SessionEnded">
<summary>
Raised when the vPilot window is about to close.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.NetworkConnected">
<summary>
Raised when a connection to the VATSIM network has been established.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.NetworkDisconnected">
<summary>
Raised when the VATSIM network connection has been closed.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.PrivateMessageReceived">
<summary>
Raised when a private message arrives.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.RadioMessageReceived">
<summary>
Raised when a text radio message arrives.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.BroadcastMessageReceived">
<summary>
Raised when a broadcast message arrives.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.MetarReceived">
<summary>
Raised when a METAR is received from the server.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.AtisReceived">
<summary>
Raised when a text ATIS (a.k.a. 'controller info') is received.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.FlightPlanReceived">
<summary>
Raised when the server responds to a request for the filed flight plan.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.NoFlightPlanError">
<summary>
Raised when the server returns a "NoFlightPlan" error in response to a request for the filed flight plan.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.ControllerAdded">
<summary>
Raised when a new controller is encountered.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.ControllerDeleted">
<summary>
Raised when a controller is deleted.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.ControllerFrequencyChanged">
<summary>
Raised when a controller changes to a new primary frequency.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.ControllerLocationChanged">
<summary>
Raised when a controller moves to a new location.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.SelcalAlertReceived">
<summary>
Raised when a SELCAL alert is received.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.AircraftAdded">
<summary>
Raised when an aircraft is added to the simulator session.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.AircraftUpdated">
<summary>
Raised when an aircraft is updated.
</summary>
</member>
<member name="E:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.AircraftDeleted">
<summary>
Raised when an aircraft is deleted.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.RequestConnect(System.String,System.String,System.String)">
<summary>
Request connection to the network.
</summary>
<param name="callsign">The callsign to use for the session. (Required)</param>
<param name="typeCode">The ICAO aircraft type code. (Required)</param>
<param name="selcalCode">The SELCAL code. (Optional; Leave empty or null for none.)</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.RequestDisconnect">
<summary>
Request disconnection from the network.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.RequestMetar(System.String)">
<summary>
Request retrieval of METAR.
</summary>
<param name="station">The station (airport) for which to request the METAR.</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.RequestAtis(System.String)">
<summary>
Request controller ATIS information.
</summary>
<param name="callsign">The callsign of the controller.</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.SendPrivateMessage(System.String,System.String)">
<summary>
Send a private message.
</summary>
<param name="to">The recipient of the private message.</param>
<param name="message">The message contents.</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.SendRadioMessage(System.String)">
<summary>
Send a textual radio message. The message will be sent on the current transmit frequency or frequencies.
</summary>
<param name="message">The message contents.</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.FileFlightPlan(System.String,System.String,System.String,System.Int32,System.Int32,System.String,System.String,System.Boolean,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
File a flight plan.
</summary>
<param name="departureAirport">The departure airport. Three or four characters, upper case.</param>
<param name="destinationAirport">The destination airport. Three or four characters, upper case.</param>
<param name="alternateAirport">The alternate airport. Three or four characters, upper case.</param>
<param name="cruiseAltitude">The planned cruise altitude in feet.</param>
<param name="cruiseSpeed">The planned cruise speed in knots.</param>
<param name="route">The flight plan route.</param>
<param name="remarks">The remarks.</param>
<param name="isHeavy">Set to true if the aircraft is in the heavy wake turbulence class.</param>
<param name="equipmentSuffix">The equipment suffix as a single upper case letter.</param>
<param name="departureTime">The departure time as HHMM zulu.</param>
<param name="enrouteHours">Estimated time enroute, hours portion.</param>
<param name="enrouteMinutes">Estimated time enroute, minutes portion.</param>
<param name="fuelHours">Fuel on board, hours portion.</param>
<param name="fuelMinutes">Fuel on board, minutes portion.</param>
<param name="isVfr">Set to true if this is a VFR flight plan.</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.RequestFlightPlan">
<summary>
Request our flight plan.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.PostDebugMessage(System.String)">
<summary>
Post a debug message.
</summary>
<param name="message">The message contents.</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.SetModeC(System.Boolean)">
<summary>
Set mode C on or off.
</summary>
<param name="modeC">Whether or not to squawk mode C.</param>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.SquawkIdent">
<summary>
Squawk ident.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IBroker.SetPtt(System.Boolean)">
<summary>
Set Push-To-Talk on or off.
</summary>
<param name="pressed">Whether or not Push-To-Talk is pressed.</param>
</member>
<member name="T:RossCarlson.Vatsim.Vpilot.Plugins.IPlugin">
<summary>
The main vPilot plugin interface.
</summary>
</member>
<member name="P:RossCarlson.Vatsim.Vpilot.Plugins.IPlugin.Name">
<summary>
The name of your plugin.
</summary>
</member>
<member name="M:RossCarlson.Vatsim.Vpilot.Plugins.IPlugin.Initialize(RossCarlson.Vatsim.Vpilot.Plugins.IBroker)">
<summary>
Called by vPilot after the plugin is instantiated.
</summary>
<param name="broker">An IBroker instance.</param>
</member>
</members>
</doc>