-
Notifications
You must be signed in to change notification settings - Fork 0
/
Documentation.xml
2455 lines (2455 loc) · 91.4 KB
/
Documentation.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
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
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Multimedia.Midi</name>
</assembly>
<members>
<member name="T:Multimedia.Midi.Device">
<summary>
Represents the base class for all MIDI devices.
</summary>
</member>
<member name="M:Multimedia.Midi.Device.Connect(System.Int32,System.Int32)">
<summary>
Connects a MIDI InputDevice to a MIDI thru or OutputDevice, or
connects a MIDI thru device to a MIDI OutputDevice.
</summary>
<param name="handleA">
Handle to a MIDI InputDevice or a MIDI thru device (for thru
devices, this handle must belong to a MIDI OutputDevice).
</param>
<param name="handleB">
Handle to the MIDI OutputDevice or thru device.
</param>
<exception cref="T:Multimedia.Midi.DeviceException">
If an error occurred while connecting the two devices.
</exception>
</member>
<member name="M:Multimedia.Midi.Device.Disconnect(System.Int32,System.Int32)">
<summary>
Disconnects a MIDI InputDevice from a MIDI thru or OutputDevice, or
disconnects a MIDI thru device from a MIDI OutputDevice.
</summary>
<param name="handleA">
Handle to a MIDI InputDevice or a MIDI thru device.
</param>
<param name="handleB">
Handle to the MIDI OutputDevice to be disconnected.
</param>
<exception cref="T:Multimedia.Midi.DeviceException">
If an error occurred while disconnecting the two devices.
</exception>
</member>
<member name="M:Multimedia.Midi.Device.Open(System.Int32)">
<summary>
Opens the MIDI device.
</summary>
<param name="deviceID">
The device ID.
</param>
</member>
<member name="M:Multimedia.Midi.Device.Close">
<summary>
Closes the MIDI device.
</summary>
</member>
<member name="M:Multimedia.Midi.Device.Reset">
<summary>
Resets the MIDI device.
</summary>
</member>
<member name="P:Multimedia.Midi.Device.Handle">
<summary>
Gets the device handle.
</summary>
</member>
<member name="P:Multimedia.Midi.Device.IsOpen">
<summary>
Gets a value indicating whether the device is open.
</summary>
</member>
<member name="T:Multimedia.Midi.DeviceException">
<summary>
Summary description for DeviceException.
</summary>
</member>
<member name="P:Multimedia.Midi.DeviceException.ErrorCode">
<summary>
Gets the error code that raised the exception.
</summary>
</member>
<member name="T:Multimedia.Midi.InputDevice">
<summary>
Represents a MIDI device capable of receiving MIDI messages.
</summary>
</member>
<member name="T:Multimedia.Midi.IChannelSource">
<summary>
Represents a source of ChannelMessages.
</summary>
</member>
<member name="E:Multimedia.Midi.IChannelSource.ChannelMessageOccurred">
<summary>
Occurs when a ChannelMessage is received, generated, or
encountered by a IChannelSource.
</summary>
</member>
<member name="T:Multimedia.Midi.ISysExSource">
<summary>
Summary description for ISysExSource.
</summary>
</member>
<member name="T:Multimedia.Midi.ISysCommonSource">
<summary>
Summary description for ISysCommonSource.
</summary>
</member>
<member name="T:Multimedia.Midi.ISysRealtimeSource">
<summary>
Summary description for ISysRealtimeSource.
</summary>
</member>
<member name="T:Multimedia.Midi.InputDeviceException">
<summary>
The exception that is thrown when a error occurs with the InputDevice
class.
</summary>
</member>
<member name="M:Multimedia.Midi.InputDeviceException.#ctor(System.Int32)">
<summary>
Initializes a new instance of the InputDeviceException class with
the specified error code.
</summary>
<param name="errCode">
The error code.
</param>
</member>
<member name="P:Multimedia.Midi.InputDeviceException.Message">
<summary>
Gets a message that describes the current exception.
</summary>
</member>
<member name="T:Multimedia.Midi.InvalidShortMessageEventArgs">
<summary>
Represents data for the InvalidShortMessageEventArgs class.
</summary>
</member>
<member name="M:Multimedia.Midi.InvalidShortMessageEventArgs.#ctor(System.Int32)">
<summary>
Initializes a new instance of the InvalidShortMessageEventArgs class
with the specified invalid short message.
</summary>
<param name="message">
The invalid short message as a packed integer.
</param>
</member>
<member name="P:Multimedia.Midi.InvalidShortMessageEventArgs.Message">
<summary>
Gets the invalid short message as a packed integer.
</summary>
</member>
<member name="T:Multimedia.Midi.InvalidSysExMessageEventArgs">
<summary>
Represents data for the InvalidSysExMessageOccurred event.
</summary>
</member>
<member name="M:Multimedia.Midi.InvalidSysExMessageEventArgs.#ctor(System.Byte[])">
<summary>
Initializes a new instance of the InvalidSysExMessageEventArgs class
with the specified invalid system exclusive data.
</summary>
<param name="sysExData">
The invalid system exclusive data.
</param>
</member>
<member name="P:Multimedia.Midi.InvalidSysExMessageEventArgs.Item(System.Int32)">
<summary>
Gets the element at the specified index.
</summary>
</member>
<member name="P:Multimedia.Midi.InvalidSysExMessageEventArgs.Length">
<summary>
Gets the length of the invalid system exclusive data.
</summary>
</member>
<member name="T:Multimedia.Midi.MidiHeader">
<summary>
Represents the Windows Multimedia MIDIHDR structure.
</summary>
</member>
<member name="T:Multimedia.Midi.MidiHeaderBuilder">
<summary>
Builds a pointer to a MidiHeader structure.
</summary>
</member>
<member name="M:Multimedia.Midi.MidiHeaderBuilder.Destroy">
<summary>
Releases the resources associated with the built MidiHeader pointer.
</summary>
</member>
<member name="M:Multimedia.Midi.MidiHeaderBuilder.Destroy(System.IntPtr)">
<summary>
Releases the resources associated with the specified MidiHeader pointer.
</summary>
<param name="headerPtr">
The MidiHeader pointer.
</param>
</member>
<member name="T:Multimedia.Midi.MidiInCaps">
<summary>
Represents Midi input device capabilities.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiInCaps.mid">
<summary>
Manufacturer identifier of the device driver for the Midi output
device.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiInCaps.pid">
<summary>
Product identifier of the Midi output device.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiInCaps.driverVersion">
<summary>
Version number of the device driver for the Midi output device. The
high-order byte is the major version number, and the low-order byte
is the minor version number.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiInCaps.name">
<summary>
Product name.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiInCaps.support">
<summary>
Optional functionality supported by the device.
</summary>
</member>
<member name="T:Multimedia.Midi.MidiOutCaps">
<summary>
Represents Midi output device capabilities.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.mid">
<summary>
Manufacturer identifier of the device driver for the Midi output
device.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.pid">
<summary>
Product identifier of the Midi output device.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.driverVersion">
<summary>
Version number of the device driver for the Midi output device. The
high-order byte is the major version number, and the low-order byte
is the minor version number.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.name">
<summary>
Product name.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.technology">
<summary>
Flags describing the type of the Midi output device.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.voices">
<summary>
Number of voices supported by an internal synthesizer device. If
the device is a port, this member is not meaningful and is set
to 0.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.notes">
<summary>
Maximum number of simultaneous notes that can be played by an
internal synthesizer device. If the device is a port, this member
is not meaningful and is set to 0.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.channelMask">
<summary>
Channels that an internal synthesizer device responds to, where the
least significant bit refers to channel 0 and the most significant
bit to channel 15. Port devices that transmit on all channels set
this member to 0xFFFF.
</summary>
</member>
<member name="F:Multimedia.Midi.MidiOutCaps.support">
<summary>
Optional functionality supported by the device.
</summary>
</member>
<member name="T:Multimedia.Midi.OutputDevice">
<summary>
Represents a device capable of sending MIDI messages.
</summary>
</member>
<member name="T:Multimedia.Midi.IChannelSink">
<summary>
Represents functionality for connecting to and disconnecting from an
IChannelSource.
</summary>
</member>
<member name="M:Multimedia.Midi.IChannelSink.Connect(Multimedia.Midi.IChannelSource)">
<summary>
Connects the IChannelSink to the specified IChannelSource.
</summary>
<param name="source">
The IChannelSource to which to connect.
</param>
</member>
<member name="M:Multimedia.Midi.IChannelSink.Disconnect(Multimedia.Midi.IChannelSource)">
<summary>
Disconnects the IChannelSink from the specified IChannelSource.
</summary>
<param name="source">
The IChannelSource from which to disconnect.
</param>
</member>
<member name="T:Multimedia.Midi.ISysExSink">
<summary>
Summary description for ISysExSink.
</summary>
</member>
<member name="T:Multimedia.Midi.ISysCommonSink">
<summary>
Summary description for ISysCommonSink.
</summary>
</member>
<member name="T:Multimedia.Midi.ISysRealtimeSink">
<summary>
Summary description for ISysRealtimeMessage.
</summary>
</member>
<member name="M:Multimedia.Midi.OutputDevice.Dispose">
<summary>
Disposes of the OutputDevice.
</summary>
</member>
<member name="E:Multimedia.Midi.OutputDevice.Opened">
<summary>
Occurs when the OutputDevice has been opened.
</summary>
</member>
<member name="E:Multimedia.Midi.OutputDevice.Closed">
<summary>
Occurs when the OutputDevice has been closed.
</summary>
</member>
<member name="E:Multimedia.Midi.OutputDevice.Disposed">
<summary>
Occurs when the OutputDevice has been disposed.
</summary>
</member>
<member name="T:Multimedia.Midi.OutputDeviceException">
<summary>
The exception that is thrown when a error occurs with the OutputDevice
class.
</summary>
</member>
<member name="M:Multimedia.Midi.OutputDeviceException.#ctor(System.Int32)">
<summary>
Initializes a new instance of the OutputDeviceException class with
the specified error code.
</summary>
<param name="errCode">
The error code.
</param>
</member>
<member name="P:Multimedia.Midi.OutputDeviceException.Message">
<summary>
Gets a message that describes the current exception.
</summary>
</member>
<member name="T:Multimedia.Midi.ChannelMessageBuilder">
<summary>
Provides functionality for building ChannelMessages.
</summary>
</member>
<member name="T:Multimedia.Midi.IMessageBuilder">
<summary>
Represents functionality for building MIDI messages.
</summary>
</member>
<member name="M:Multimedia.Midi.IMessageBuilder.Build">
<summary>
Builds the MIDI message.
</summary>
</member>
<member name="M:Multimedia.Midi.ChannelMessageBuilder.#ctor">
<summary>
Initializes a new instance of the ChannelMessageBuilder class.
</summary>
</member>
<member name="M:Multimedia.Midi.ChannelMessageBuilder.#ctor(Multimedia.Midi.ChannelMessage)">
<summary>
Initializes a new instance of the ChannelMessageBuilder class with
the specified ChannelMessage.
</summary>
<param name="message">
The ChannelMessage to use for initializing the ChannelMessageBuilder.
</param>
<remarks>
The ChannelMessageBuilder uses the specified ChannelMessage to
initialize its property values.
</remarks>
</member>
<member name="M:Multimedia.Midi.ChannelMessageBuilder.Initialize(Multimedia.Midi.ChannelMessage)">
<summary>
Initializes the ChannelMessageBuilder with the specified
ChannelMessage.
</summary>
<param name="message">
The ChannelMessage to use for initializing the ChannelMessageBuilder.
</param>
</member>
<member name="M:Multimedia.Midi.ChannelMessageBuilder.Clear">
<summary>
Clears the ChannelMessage cache.
</summary>
</member>
<member name="M:Multimedia.Midi.ChannelMessageBuilder.Build">
<summary>
Builds a ChannelMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.ChannelMessageBuilder.Count">
<summary>
Gets the number of messages in the ChannelMessage cache.
</summary>
</member>
<member name="P:Multimedia.Midi.ChannelMessageBuilder.Result">
<summary>
Gets the built ChannelMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.ChannelMessageBuilder.Message">
<summary>
Gets or sets the ChannelMessage as a packed integer.
</summary>
</member>
<member name="P:Multimedia.Midi.ChannelMessageBuilder.Command">
<summary>
Gets or sets the Command value to use for building the
ChannelMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.ChannelMessageBuilder.MidiChannel">
<summary>
Gets or sets the MIDI channel to use for building the
ChannelMessage.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
MidiChannel is set to a value less than zero or greater than 15.
</exception>
</member>
<member name="P:Multimedia.Midi.ChannelMessageBuilder.Data1">
<summary>
Gets or sets the first data value to use for building the
ChannelMessage.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Data1 is set to a value less than zero or greater than 127.
</exception>
</member>
<member name="P:Multimedia.Midi.ChannelMessageBuilder.Data2">
<summary>
Gets or sets the second data value to use for building the
ChannelMessage.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Data2 is set to a value less than zero or greater than 127.
</exception>
</member>
<member name="T:Multimedia.Midi.MetaMessageTextBuilder">
<summary>
Provides functionality for building meta text messages.
</summary>
</member>
<member name="M:Multimedia.Midi.MetaMessageTextBuilder.#ctor">
<summary>
Initializes a new instance of the MetaMessageTextBuilder class.
</summary>
</member>
<member name="M:Multimedia.Midi.MetaMessageTextBuilder.#ctor(Multimedia.Midi.MetaType)">
<summary>
Initializes a new instance of the MetaMessageTextBuilder class with the
specified type.
</summary>
<param name="type">
The type of MetaMessage.
</param>
<exception cref="T:System.ArgumentException">
If the MetaMessage type is not a text based type.
</exception>
<remarks>
The MetaMessage type must be one of the following text based
types:
<list>
<item>
Copyright
</item>
<item>
Cuepoint
</item>
<item>
DeviceName
</item>
<item>
InstrumentName
</item>
<item>
Lyric
</item>
<item>
Marker
</item>
<item>
ProgramName
</item>
<item>
Text
</item>
<item>
TrackName
</item>
</list>
If the MetaMessage is not a text based type, an exception
will be thrown.
</remarks>
</member>
<member name="M:Multimedia.Midi.MetaMessageTextBuilder.#ctor(Multimedia.Midi.MetaType,System.String)">
<summary>
Initializes a new instance of the MetaMessageTextBuilder class with the
specified type.
</summary>
<param name="type">
The type of MetaMessage.
</param>
<exception cref="T:System.ArgumentException">
If the MetaMessage type is not a text based type.
</exception>
<remarks>
The MetaMessage type must be one of the following text based
types:
<list>
<item>
Copyright
</item>
<item>
Cuepoint
</item>
<item>
DeviceName
</item>
<item>
InstrumentName
</item>
<item>
Lyric
</item>
<item>
Marker
</item>
<item>
ProgramName
</item>
<item>
Text
</item>
<item>
TrackName
</item>
</list>
If the MetaMessage is not a text based type, an exception
will be thrown.
</remarks>
</member>
<member name="M:Multimedia.Midi.MetaMessageTextBuilder.#ctor(Multimedia.Midi.MetaMessage)">
<summary>
Initializes a new instance of the MetaMessageTextBuilder class with the
specified MetaMessage.
</summary>
<param name="message">
The MetaMessage to use for initializing the MetaMessageTextBuilder.
</param>
<exception cref="T:System.ArgumentException">
If the MetaMessage is not a text based type.
</exception>
<remarks>
The MetaMessage must be one of the following text based types:
<list>
<item>
Copyright
</item>
<item>
Cuepoint
</item>
<item>
DeviceName
</item>
<item>
InstrumentName
</item>
<item>
Lyric
</item>
<item>
Marker
</item>
<item>
ProgramName
</item>
<item>
Text
</item>
<item>
TrackName
</item>
</list>
If the MetaMessage is not a text based type, an exception will be
thrown.
</remarks>
</member>
<member name="M:Multimedia.Midi.MetaMessageTextBuilder.Initialize(Multimedia.Midi.MetaMessage)">
<summary>
Initializes the MetaMessageTextBuilder with the specified MetaMessage.
</summary>
<param name="message">
The MetaMessage to use for initializing the MetaMessageTextBuilder.
</param>
<exception cref="T:System.ArgumentException">
If the MetaMessage is not a text based type.
</exception>
</member>
<member name="M:Multimedia.Midi.MetaMessageTextBuilder.IsTextType(Multimedia.Midi.MetaType)">
<summary>
Indicates whether or not the specified MetaType is a text based
type.
</summary>
<param name="type">
The MetaType to test.
</param>
<returns>
<b>true</b> if the MetaType is a text based type;
otherwise, <b>false</b>.
</returns>
</member>
<member name="M:Multimedia.Midi.MetaMessageTextBuilder.Build">
<summary>
Builds the text MetaMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.MetaMessageTextBuilder.Text">
<summary>
Gets or sets the text for the MetaMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.MetaMessageTextBuilder.Type">
<summary>
Gets or sets the MetaMessage type.
</summary>
<exception cref="T:System.ArgumentException">
If the type is not a text based type.
</exception>
</member>
<member name="P:Multimedia.Midi.MetaMessageTextBuilder.Result">
<summary>
Gets the built MetaMessage.
</summary>
</member>
<member name="T:Multimedia.Midi.SongPositionPointerBuilder">
<summary>
Provides functionality for building song position pointer messages.
</summary>
</member>
<member name="M:Multimedia.Midi.SongPositionPointerBuilder.#ctor">
<summary>
Initializes a new instance of the SongPositionPointerBuilder class.
</summary>
</member>
<member name="M:Multimedia.Midi.SongPositionPointerBuilder.#ctor(Multimedia.Midi.SysCommonMessage)">
<summary>
Initializes a new instance of the SongPositionPointerBuilder class
with the specified song position pointer message.
</summary>
<param name="message">
The song position pointer message to use for initializing the
SongPositionPointerBuilder.
</param>
<exception cref="T:System.ArgumentException">
If message is not a song position pointer message.
</exception>
</member>
<member name="M:Multimedia.Midi.SongPositionPointerBuilder.Initialize(Multimedia.Midi.SysCommonMessage)">
<summary>
Initializes the SongPositionPointerBuilder with the specified
SysCommonMessage.
</summary>
<param name="message">
The SysCommonMessage to use to initialize the
SongPositionPointerBuilder.
</param>
<exception cref="T:System.ArgumentException">
If the SysCommonMessage is not a song position pointer message.
</exception>
</member>
<member name="M:Multimedia.Midi.SongPositionPointerBuilder.Build">
<summary>
Builds a song position pointer message.
</summary>
</member>
<member name="P:Multimedia.Midi.SongPositionPointerBuilder.PositionInTicks">
<summary>
Gets or sets the sequence position in ticks.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Value is set to less than zero.
</exception>
<remarks>
Note: the position in ticks value is converted to the song position
pointer value. Since the song position pointer has a lower
resolution than the position in ticks, there is a probable loss of
resolution when setting the position in ticks value.
</remarks>
</member>
<member name="P:Multimedia.Midi.SongPositionPointerBuilder.Ppqn">
<summary>
Gets or sets the PulsesPerQuarterNote object.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Value is not a multiple of 24.
</exception>
</member>
<member name="P:Multimedia.Midi.SongPositionPointerBuilder.SongPosition">
<summary>
Gets or sets the song position.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Value is set to less than zero.
</exception>
</member>
<member name="P:Multimedia.Midi.SongPositionPointerBuilder.Result">
<summary>
Gets the built song position pointer message.
</summary>
</member>
<member name="T:Multimedia.Midi.SysCommonMessageBuilder">
<summary>
Provides functionality for building SysCommonMessages.
</summary>
</member>
<member name="M:Multimedia.Midi.SysCommonMessageBuilder.#ctor">
<summary>
Initializes a new instance of the SysCommonMessageBuilder class.
</summary>
</member>
<member name="M:Multimedia.Midi.SysCommonMessageBuilder.#ctor(Multimedia.Midi.SysCommonMessage)">
<summary>
Initializes a new instance of the SysCommonMessageBuilder class
with the specified SystemCommonMessage.
</summary>
<param name="message">
The SysCommonMessage to use for initializing the
SysCommonMessageBuilder.
</param>
<remarks>
The SysCommonMessageBuilder uses the specified SysCommonMessage to
initialize its property values.
</remarks>
</member>
<member name="M:Multimedia.Midi.SysCommonMessageBuilder.Initialize(Multimedia.Midi.SysCommonMessage)">
<summary>
Initializes the SysCommonMessageBuilder with the specified
SysCommonMessage.
</summary>
<param name="message">
The SysCommonMessage to use for initializing the
SysCommonMessageBuilder.
</param>
</member>
<member name="M:Multimedia.Midi.SysCommonMessageBuilder.Clear">
<summary>
Clears the SysCommonMessageBuilder cache.
</summary>
</member>
<member name="M:Multimedia.Midi.SysCommonMessageBuilder.Build">
<summary>
Builds a SysCommonMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.SysCommonMessageBuilder.Count">
<summary>
Gets the number of messages in the SysCommonMessageBuilder cache.
</summary>
</member>
<member name="P:Multimedia.Midi.SysCommonMessageBuilder.Result">
<summary>
Gets the built SysCommonMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.SysCommonMessageBuilder.Message">
<summary>
Gets or sets the SysCommonMessage as a packed integer.
</summary>
</member>
<member name="P:Multimedia.Midi.SysCommonMessageBuilder.Type">
<summary>
Gets or sets the type of SysCommonMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.SysCommonMessageBuilder.Data1">
<summary>
Gets or sets the first data value to use for building the
SysCommonMessage.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Data1 is set to a value less than zero or greater than 127.
</exception>
</member>
<member name="P:Multimedia.Midi.SysCommonMessageBuilder.Data2">
<summary>
Gets or sets the second data value to use for building the
SysCommonMessage.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Data2 is set to a value less than zero or greater than 127.
</exception>
</member>
<member name="T:Multimedia.Midi.TempoChangeBuilder">
<summary>
Provides functionality for building tempo messages.
</summary>
</member>
<member name="M:Multimedia.Midi.TempoChangeBuilder.#ctor">
<summary>
Initializes a new instance of the TempoChangeBuilder class.
</summary>
</member>
<member name="M:Multimedia.Midi.TempoChangeBuilder.#ctor(Multimedia.Midi.MetaMessage)">
<summary>
Initialize a new instance of the TempoChangeBuilder class with the
specified MetaMessage.
</summary>
<param name="message">
The MetaMessage to use for initializing the TempoChangeBuilder class.
</param>
<exception cref="T:System.ArgumentException">
If the specified MetaMessage is not a tempo type.
</exception>
<remarks>
The TempoChangeBuilder uses the specified MetaMessage to initialize
its property values.
</remarks>
</member>
<member name="M:Multimedia.Midi.TempoChangeBuilder.Initialize(Multimedia.Midi.MetaMessage)">
<summary>
Initializes the TempoChangeBuilder with the specified MetaMessage.
</summary>
<param name="message">
The MetaMessage to use for initializing the TempoChangeBuilder.
</param>
<exception cref="T:System.ArgumentException">
If the specified MetaMessage is not a tempo type.
</exception>
</member>
<member name="M:Multimedia.Midi.TempoChangeBuilder.Build">
<summary>
Builds the tempo change MetaMessage.
</summary>
</member>
<member name="P:Multimedia.Midi.TempoChangeBuilder.Tempo">
<summary>
Gets or sets the Tempo object.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Value is set to less than zero.
</exception>
</member>
<member name="P:Multimedia.Midi.TempoChangeBuilder.Result">
<summary>
Gets the built message.
</summary>
</member>
<member name="T:Multimedia.Midi.TimeSignatureBuilder">
<summary>
Provides easy to use functionality for meta time signature messages.
</summary>
</member>
<member name="M:Multimedia.Midi.TimeSignatureBuilder.#ctor">
<summary>
Initializes a new instance of the TimeSignatureBuilder class.
</summary>
</member>
<member name="M:Multimedia.Midi.TimeSignatureBuilder.#ctor(Multimedia.Midi.MetaMessage)">
<summary>
Initializes a new instance of the TimeSignatureBuilder class with the
specified MetaMessage.
</summary>
<param name="message">
The MetaMessage to use for initializing the TimeSignatureBuilder class.
</param>
<exception cref="T:System.ArgumentException">
If the specified MetaMessage is not a time signature type.
</exception>
<remarks>
The TimeSignatureBuilder uses the specified MetaMessage to
initialize its property values.
</remarks>
</member>
<member name="M:Multimedia.Midi.TimeSignatureBuilder.Initialize(Multimedia.Midi.MetaMessage)">
<summary>
Initializes the TimeSignatureBuilder with the specified MetaMessage.
</summary>
<param name="message">
The MetaMessage to use for initializing the TimeSignatureBuilder.
</param>
<exception cref="T:System.ArgumentException">
If the specified MetaMessage is not a time signature type.
</exception>
</member>
<member name="M:Multimedia.Midi.TimeSignatureBuilder.Build">
<summary>
Builds the time signature message.
</summary>
</member>
<member name="P:Multimedia.Midi.TimeSignatureBuilder.Numerator">
<summary>
Gets or sets the numerator.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Numerator is set to a value less than one.
</exception>
</member>
<member name="P:Multimedia.Midi.TimeSignatureBuilder.Denominator">
<summary>
Gets or sets the denominator.
</summary>
<exception cref="T:System.ArgumentOutOfRangeException">
Denominator is set to a value less than 2.
</exception>
<exception cref="T:System.ArgumentException">
Denominator is set to a value that is not a multiple of 2.
</exception>
</member>
<member name="P:Multimedia.Midi.TimeSignatureBuilder.ClocksPerMetronomeClick">
<summary>
Gets or sets the clocks per metronome click.
</summary>
<remarks>
Clocks per metronome click determines how many MIDI clocks occur
for each metronome click.
</remarks>
</member>
<member name="P:Multimedia.Midi.TimeSignatureBuilder.ThirtySecondNotesPerQuarterNote">
<summary>
Gets or sets how many thirty second notes there are for each
quarter note.
</summary>
</member>
<member name="P:Multimedia.Midi.TimeSignatureBuilder.Result">
<summary>
Gets the built message.
</summary>
</member>
<member name="T:Multimedia.Midi.ChannelMessageEventHandler">
<summary>
Represents the method that handles ChannelMessage events.
</summary>
</member>
<member name="T:Multimedia.Midi.ChannelCommand">
<summary>
Defines constants for ChannelMessage types.
</summary>
</member>
<member name="F:Multimedia.Midi.ChannelCommand.NoteOff">
<summary>
Represents the note-off command type.
</summary>
</member>
<member name="F:Multimedia.Midi.ChannelCommand.NoteOn">
<summary>
Represents the note-on command type.
</summary>
</member>
<member name="F:Multimedia.Midi.ChannelCommand.PolyPressure">
<summary>
Represents the poly pressure (aftertouch) command type.
</summary>
</member>
<member name="F:Multimedia.Midi.ChannelCommand.Controller">
<summary>
Represents the controller command type.
</summary>
</member>
<member name="F:Multimedia.Midi.ChannelCommand.ProgramChange">
<summary>
Represents the program change command type.
</summary>
</member>
<member name="F:Multimedia.Midi.ChannelCommand.ChannelPressure">
<summary>