This repository has been archived by the owner on Aug 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathMygodLibrary.XML
7333 lines (7326 loc) · 375 KB
/
MygodLibrary.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>MygodLibrary</name>
</assembly>
<members>
<member name="T:Mygod.Helper">
<summary>
辅助类。
</summary>
</member>
<member name="M:Mygod.Helper.Invoke(System.Windows.Threading.Dispatcher,System.Action)">
<summary>
用与 System.Windows.Threading.Dispatcher 关联的线程上的指定参数同步执行指定委托。
</summary>
<param name="dispatcher">指定 System.Windows.Threading.Dispatcher。</param>
<param name="a">该方法将被送到队列中。</param>
</member>
<member name="M:Mygod.Helper.Invoke``1(System.Windows.Threading.Dispatcher,System.Func{``0})">
<summary>
用与 System.Windows.Threading.Dispatcher 关联的线程上的指定参数同步执行指定委托。
</summary>
<param name="dispatcher">指定 System.Windows.Threading.Dispatcher。</param>
<param name="a">该方法将被送到队列中。</param>
</member>
<member name="M:Mygod.Helper.GetMessage(System.Exception)">
<summary>
用于将错误转化为可读的字符串。
</summary>
<param name="e">错误。</param>
<returns>错误字符串。</returns>
</member>
<member name="M:Mygod.Helper.Invert(System.Windows.Media.Matrix,System.Windows.Media.Matrix@)">
<summary>
Inverts a Matrix. The Invert functionality on the Matrix type is
internal to the framework only. Since Matrix is a struct, an out
parameter must be presented.
</summary>
<param name="m">The Matrix object.</param>
<param name="outputMatrix">The matrix to return by an output
parameter.</param>
<returns>Returns a value indicating whether the type was
successfully inverted. If the determinant is 0.0, then it cannot
be inverted and the original instance will remain untouched.</returns>
</member>
<member name="M:Mygod.Helper.Contains(System.String,System.String,System.StringComparison)">
<summary>
An implementation of the Contains member of string that takes in a
string comparison. The traditional .NET string Contains member uses
StringComparison.Ordinal.
</summary>
<param name="s">The string.</param>
<param name="value">The string value to search for.</param>
<param name="comparison">The string comparison type.</param>
<returns>Returns true when the substring is found.</returns>
</member>
<member name="T:Mygod.IO.IniFile">
<summary>
提供Ini文件的操作类。
</summary>
</member>
<member name="M:Mygod.IO.IniFile.#ctor(System.String,System.UInt32)">
<summary>
创建新的IniFile。
</summary>
<param name="filePath">Ini文件路径。</param>
<param name="stringLong">文本长度,如果超过会被截断。</param>
</member>
<member name="M:Mygod.IO.IniFile.ReadIniData(System.String,System.String,System.String)">
<summary>
读取Ini数据。
</summary>
<param name="section">Ini节名。</param>
<param name="key">Ini键名。</param>
<param name="noText">当指定键不存在时返回值。</param>
<returns></returns>
</member>
<member name="M:Mygod.IO.IniFile.WriteIniData(System.String,System.String,System.String)">
<summary>
写出Ini数据。
</summary>
<param name="section">Ini节名。</param>
<param name="key">Ini键名。</param>
<param name="value">要写入的值。</param>
</member>
<member name="T:Mygod.IO.IniSection">
<summary>
提供Ini节的操作类。
</summary>
</member>
<member name="M:Mygod.IO.IniSection.#ctor(Mygod.IO.IniFile,System.String)">
<summary>
创建新的Ini节。
</summary>
<param name="iniFile">属于的Ini文件。</param>
<param name="sectionName">节名。</param>
</member>
<member name="M:Mygod.IO.IniSection.Remove">
<summary>
从该文件中删除此节。
</summary>
</member>
<member name="P:Mygod.IO.IniSection.IniFile">
<summary>
获取属于的Ini文件。
</summary>
</member>
<member name="P:Mygod.IO.IniSection.Name">
<summary>
获取当前节节名。
</summary>
</member>
<member name="T:Mygod.IO.IIniData`1">
<summary>
定义特定的方法获得或设置值。
</summary>
<typeparam name="T">要获得的类型。</typeparam>
</member>
<member name="M:Mygod.IO.IIniData`1.Get">
<summary>
获得ini文件中的值。
</summary>
<returns>返回获得的值。</returns>
</member>
<member name="M:Mygod.IO.IIniData`1.Set(`0)">
<summary>
设置ini文件中的值。
</summary>
<param name="value">要设置的值。</param>
</member>
<member name="T:Mygod.IO.IIniDataWithParam`2">
<summary>
定义带参数的特定方法获得或设置值。
</summary>
<typeparam name="TKey">要获得的类型。</typeparam>
<typeparam name="TResult">要获得的类型。</typeparam>
</member>
<member name="M:Mygod.IO.IIniDataWithParam`2.Get(`0)">
<summary>
获得ini文件中的值。
</summary>
<param name="key">参数。</param>
<returns>返回获得的值。</returns>
</member>
<member name="M:Mygod.IO.IIniDataWithParam`2.Set(`0,`1)">
<summary>
设置ini文件中的值。
</summary>
<param name="key">参数。</param>
<param name="value">要设置的值。</param>
</member>
<member name="T:Mygod.IO.StringData">
<summary>
从ini参数中获得字符串值。
</summary>
</member>
<member name="M:Mygod.IO.StringData.#ctor(Mygod.IO.IniSection,System.String,System.String)">
<summary>
构建一个 StringData 实例。
</summary>
<param name="inisection"></param>
<param name="key"></param>
<param name="defaultvalue"></param>
</member>
<member name="P:Mygod.IO.StringData.DataKey">
<summary>
Key resetter.
</summary>
</member>
<member name="T:Mygod.Media.Buzzer">
<summary>
提供演奏蜂鸣器音乐的类。
</summary>
</member>
<member name="M:Mygod.Media.Buzzer.Beep(System.Int32,System.Int32)">
<summary>
最基本的蜂鸣器音。
</summary>
<param name="freq">音高。(单位Hz)</param>
<param name="dur">演奏时长。</param>
<returns>返回演奏是否成功。</returns>
</member>
<member name="F:Mygod.Media.Buzzer.Speed">
<summary>
演奏速度(不精确)。
</summary>
</member>
<member name="M:Mygod.Media.Buzzer.#ctor(System.Int32)">
<summary>
Buzzer构造函数。
</summary>
<param name="speed">演奏速度。(默认120)</param>
</member>
<member name="M:Mygod.Media.Buzzer.Play(System.String,System.Int32)">
<summary>
播放dur毫秒的note。(输入无论大小写)
</summary>
<param name="sNote">表示音符。第一个字符必须在'A'至'G'之间, 接下来可以输入一个或几个'#'或'b'表示升降号,最后输入音阶。
如果为0则延时。</param>
<param name="iDur">播放时长。(单位毫秒)</param>
</member>
<member name="M:Mygod.Media.Buzzer.Play(System.String,System.Double)">
<summary>
播放dur拍的note。(输入无论大小写)
</summary>
<param name="sNote">表示音符。第一个字符必须在'A'至'G'之间, 接下来可以输入一个或几个'#'或'b'表示升降号,最后输入音阶。
如果为空则不播放。</param>
<param name="dDur">播放时长。(单位拍)</param>
</member>
<member name="M:Mygod.Media.Buzzer.Play(System.String)">
<summary>
播放notes。
</summary>
<param name="notes">格式:sNote、iDur、sNote、iDur……用空格分隔。</param>
</member>
<member name="M:Mygod.Media.Buzzer.PlayNotesWithEnglishNoteNames(System.String)">
<summary>
播放notes。
</summary>
<param name="notes">格式:sNote、dDur、sNote、dDur……用空格、回车、制表符、空字符分隔。</param>
</member>
<member name="M:Mygod.Media.Buzzer.PlayNotesWithFixedDoNoteNames(System.String)">
<summary>
播放notes。
</summary>
<param name="notes">格式:sNote、dDur、sNote、dDur……用空格、回车、制表符、空字符分隔。</param>
</member>
<member name="P:Mygod.Media.Buzzer.Hit">
<summary>
每拍演奏时长。(单位ms)
</summary>
</member>
<member name="T:Mygod.Media.BuzzerExample">
<summary>
提供演奏Buzzer的样例。
</summary>
</member>
<member name="M:Mygod.Media.BuzzerExample.OdeToJoy">
<summary>
使用Buzzer.Play实现的《欢乐颂》。(理论速度:120,实际速度:90~100)
播放字符串如下:E1 500 E1 500 F1 500 G1 500 G1 500 F1 500 E1 500 D1 500 C1 500 C1 500 D1 500 E1 500 E1 750 D1 250 D1 1000
E1 500 E1 500 F1 500 G1 500 G1 500 F1 500 E1 500 D1 500 C1 500 C1 500 D1 500 E1 500 D1 750 C1 250 C1 1000
D1 500 D1 500 E1 500 C1 500 D1 500 E1 250 F1 250 E1 500 C1 500 D1 500 E1 250 F1 250 E1 500 D1 500 C1 500 D1 500 G0 500
E1 1000 E1 500 F1 500 G1 500 G1 500 F1 500 E1 500 D1 500 C1 500 C1 500 D1 500 E1 500 D1 750 C1 250 C1 1000
</summary>
</member>
<member name="M:Mygod.Media.BuzzerExample.Alarm">
<summary>
播放一次300Hz至10000Hz的来回警报。(由于API等的原因不能连续)
</summary>
</member>
<member name="T:Mygod.Runtime.Serialization.Plist.BinaryPlistArray">
<summary>
Represents an array value in a binary plist.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistArray.#ctor(System.Collections.Generic.IList{Mygod.Runtime.Serialization.Plist.BinaryPlistItem},System.Int32)">
<summary>
Initializes a new instance of the BinaryPlistArray class.
</summary>
<param name="objectTable">A reference to the binary plist's object table.</param>
<param name="size">The size of the array.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistArray.ToArray">
<summary>
Converts this instance into an <see cref="T:object[]" /> array.
</summary>
<returns>
The <see cref="T:object[]" /> array representation of this instance.
</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistArray.ToString">
<summary>
Returns the string representation of this instance.
</summary>
<returns>This instance's string representation.</returns>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistArray.ObjectReference">
<summary>
Gets the array's object reference collection.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistArray.ObjectTable">
<summary>
Gets a reference to the binary plist's object table.
</summary>
</member>
<member name="T:Mygod.Runtime.Serialization.Plist.BinaryPlistDictionary">
<summary>
Represents a dictionary in a binary plist.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistDictionary.#ctor(System.Collections.Generic.IList{Mygod.Runtime.Serialization.Plist.BinaryPlistItem},System.Int32)">
<summary>
Initializes a new instance of the BinaryPlistDictionary class.
</summary>
<param name="objectTable">A reference to the binary plist's object table.</param>
<param name="size">The size of the dictionay.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistDictionary.ToDictionary">
<summary>
Converts this instance into a <see cref="T:System.Collections.Generic.Dictionary`2"/>.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.Dictionary`2"/> representation this instance.
</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistDictionary.ToString">
<summary>
Returns the string representation of this instance.
</summary>
<returns>This instance's string representation.</returns>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistDictionary.KeyReference">
<summary>
Gets the dictionary's key reference collection.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistDictionary.ObjectReference">
<summary>
Gets the dictionary's object reference collection.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistDictionary.ObjectTable">
<summary>
Gets a reference to the binary plist's object table.
</summary>
</member>
<member name="T:Mygod.Runtime.Serialization.Plist.BinaryPlistItem">
<summary>
Represents an item in a binary plist's object table.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.#ctor">
<summary>
Initializes a new instance of the BinaryPlistItem class.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.#ctor(System.Object)">
<summary>
Initializes a new instance of the BinaryPlistItem class.
</summary>
<param name="value">The value of the object the item represents.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.SetByteValue(System.Collections.Generic.IEnumerable{System.Byte})">
<summary>
Sets the <see cref="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.ByteValue"/> to the given collection.
</summary>
<param name="buffer">The collection to set.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.ToString">
<summary>
Gets the string representation of this instance.
</summary>
<returns>The string representation of this instance.</returns>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.ByteValue">
<summary>
Gets the item's byte value collection.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.IsArray">
<summary>
Gets or sets a value indicating whether this item represents an array.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.IsDictionary">
<summary>
Gets or sets a value indicating whether this item represents a dictionary.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.Marker">
<summary>
Gets the item's marker value collection.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.Size">
<summary>
Gets the item's size, which is a sum of the <see cref="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.Marker"/> and <see cref="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.ByteValue"/> lengths.
</summary>
</member>
<member name="P:Mygod.Runtime.Serialization.Plist.BinaryPlistItem.Value">
<summary>
Gets or sets the object value this item represents.
</summary>
</member>
<member name="T:Mygod.Runtime.Serialization.Plist.BinaryPlistReader">
<summary>
Performs de-serialization of binary plists.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadObject(System.String)">
<summary>
Reads a binary plist from the given file path into an <see cref="T:System.Collections.IDictionary"/>.
</summary>
<param name="path">The path of the file to read.</param>
<returns>
The result plist <see cref="T:System.Collections.IDictionary"/>.
</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadObject(System.IO.Stream)">
<summary>
Reads a binary plist from the given stream into an <see cref="T:System.Collections.IDictionary"/>.
</summary>
<param name="stream">
The <see cref="T:System.IO.Stream"/> to read.
</param>
<returns>
The result plist <see cref="T:System.Collections.IDictionary"/>.
</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadObject``1(System.String)">
<summary>
Reads a binary plist from the given file path into a new <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object instance.
</summary>
<typeparam name="T">
The concrete <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> type to create.
</typeparam>
<param name="path">The path of the file to read.</param>
<returns>
The result <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object instance.
</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadObject``1(System.IO.Stream)">
<summary>
Reads a binary plist from the given stream into a new <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object instance.
</summary>
<typeparam name="T">
The concrete <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> type to create.
</typeparam>
<param name="stream">
The <see cref="T:System.IO.Stream"/> to read.
</param>
<returns>
The result <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object instance.
</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadAsciiString(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads an ASCII string value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the ASCII string value from.
</param>
<param name="index">The index in the stream the string value starts at.</param>
<param name="size">The number of bytes that make up the string value.</param>
<returns>A string value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadData(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads a data value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the data value from.
</param>
<param name="index">The index in the stream the data value starts at.</param>
<param name="size">The number of bytes that make up the data value.</param>
<returns>A data value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadDate(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads a date value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the date value from.
</param>
<param name="index">The index in the stream the date value starts at.</param>
<param name="size">The number of bytes that make up the date value.</param>
<returns>A date value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadInteger(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads an integer value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the integer value from.
</param>
<param name="index">The index in the stream the integer value starts at.</param>
<param name="size">The number of bytes that make up the integer value.</param>
<returns>An integer value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadPrimitive(System.IO.BinaryReader,System.Int64,System.Nullable{System.Boolean}@)">
<summary>
Reads a primitive (true, false or null) value from the given reader, starting at the given index.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the primitive value from.
</param>
<param name="index">The index in the stream the value starts at.</param>
<param name="primitive">Contains the read primitive value upon completion.</param>
<returns>True if a value was read, false if the value was a fill byte.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadReal(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads a floating-point value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the floating-point value from.
</param>
<param name="index">The index int he stream the floating-point value starts at.</param>
<param name="size">The number of bytes that make up the floating-point value.</param>
<returns>A floating-point value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadUnicodeString(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads a Unicode string value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the Unicode string value from.
</param>
<param name="index">The index in the stream the string value starts at.</param>
<param name="size">The number of characters that make up the string value.</param>
<returns>A string value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadUniqueId(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads a unique ID value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the unique ID value from.
</param>
<param name="index">The index in the stream the unique ID value starts at.</param>
<param name="size">The number of bytes that make up the unique ID value.</param>
<returns>A unique ID value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadArray(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads an array value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the array value from.
</param>
<param name="index">The index in the stream the array value starts at.</param>
<param name="size">The number of items in the array.</param>
<returns>An array value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadDictionary(System.IO.BinaryReader,System.Int64,System.Int32)">
<summary>
Reads a dictionary value from the given reader, starting at the given index and of the given size.
</summary>
<param name="reader">
The <see cref="T:System.IO.BinaryReader"/> to read the dictionary value from.
</param>
<param name="index">The index in the stream the dictionary value starts at.</param>
<param name="size">The number of items in the dictionary.</param>
<returns>A dictionary value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadObjectTable(System.IO.BinaryReader)">
<summary>
Reads the object table from the given reader.
</summary>
<param name="reader">The reader to read the object table from.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.ReadOffsetTable(System.IO.BinaryReader)">
<summary>
Reads the offset table from the given reader.
</summary>
<param name="reader">The reader to read the offset table from.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistReader.Reset">
<summary>
Resets this instance's state.
</summary>
</member>
<member name="T:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter">
<summary>
Performs serialization of objects into binary plist format.
</summary>
</member>
<member name="F:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.HeaderMagicNumber">
<summary>
Gets the magic number value used in a binary plist header.
</summary>
</member>
<member name="F:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.HeaderVersionNumber">
<summary>
Gets the version number value used in a binary plist header.
</summary>
</member>
<member name="F:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.ReferenceDate">
<summary>
Gets Apple's reference date value.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteObject(System.String,Mygod.Runtime.Serialization.Plist.IPlistSerializable)">
<summary>
Writes the specified <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object to the given file path as a binary plist.
</summary>
<param name="path">The file path to write to.</param>
<param name="obj">
The <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object to write.
</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteObject(System.IO.Stream,Mygod.Runtime.Serialization.Plist.IPlistSerializable)">
<summary>
Writes the specified <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object to the given stream as a binary plist.
</summary>
<param name="stream">The stream to write to.</param>
<param name="obj">
The <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object to write.
</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteObject(System.IO.Stream,Mygod.Runtime.Serialization.Plist.IPlistSerializable,System.Boolean)">
<summary>
Writes the specified <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object to the given stream as a binary plist.
</summary>
<param name="stream">The stream to write to.</param>
<param name="obj">
The <see cref="T:Mygod.Runtime.Serialization.Plist.IPlistSerializable"/> object to write.
</param>
<param name="closeStream">A value indicating whether to close the stream after the write operation completes.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteObject(System.String,System.Collections.IDictionary)">
<summary>
Writes the specified <see cref="T:System.Collections.IDictionary"/> object to the given file path as a binary plist.
</summary>
<param name="path">The file path to write to.</param>
<param name="dictionary">
The <see cref="T:System.Collections.IDictionary"/> object to write.
</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteObject(System.IO.Stream,System.Collections.IDictionary)">
<summary>
Writes the specified <see cref="T:System.Collections.IDictionary"/> object to the given stream as a binary plist.
</summary>
<param name="stream">The stream to write to.</param>
<param name="dictionary">
The <see cref="T:System.Collections.IDictionary"/> object to write.
</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteObject(System.IO.Stream,System.Collections.IDictionary,System.Boolean)">
<summary>
Writes the specified <see cref="T:System.Collections.IDictionary"/> object to the given stream as a binary plist.
</summary>
<param name="stream">The stream to write to.</param>
<param name="dictionary">
The <see cref="T:System.Collections.IDictionary"/> object to write.
</param>
<param name="closeStream">A value indicating whether to close the stream after the write operation completes.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddIntegerCount(System.Collections.Generic.IList{System.Byte},System.Int32)">
<summary>
Adds an integer count to the given buffer.
</summary>
<param name="buffer">The buffer to add the integer count to.</param>
<param name="count">A count value to write.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.GetIntegerBytes(System.Int64)">
<summary>
Gets a big-endian byte array that corresponds to the given integer value.
</summary>
<param name="value">The integer value to get bytes for.</param>
<returns>A big-endian byte array.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteReferenceInteger(System.IO.BinaryWriter,System.Int64,System.Int32)">
<summary>
Writes the given value using the number of bytes indicated by the specified size
to the given <see cref="T:System.IO.BinaryWriter"/>.
</summary>
<param name="writer">
The <see cref="T:System.IO.BinaryWriter"/> to write to.
</param>
<param name="value">The value to write.</param>
<param name="size">The size of the integer to write.</param>
<returns>The number of bytes written.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddArray(System.Collections.IEnumerable)">
<summary>
Adds an array to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddData(System.Object)">
<summary>
Adds arbitrary data to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddDate(System.DateTime)">
<summary>
Adds a date to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddDictionary(System.Collections.IDictionary)">
<summary>
Adds a dictionary to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddDouble(System.Double)">
<summary>
Adds a double to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddFloat(System.Single)">
<summary>
Adds a float to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddInteger(System.Int64)">
<summary>
Adds an integer to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddObject(System.Object)">
<summary>
Adds an object to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddPrimitive(System.Nullable{System.Boolean})">
<summary>
Adds a primitive to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.AddString(System.String)">
<summary>
Adds a string to the internal object table.
</summary>
<param name="value">The value to add.</param>
<returns>The index of the added value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.CalculateObjectRefSize">
<summary>
Calculates the object ref size to use for this instance's current state.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.Reset">
<summary>
Resets this instance's state.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteArray(System.IO.BinaryWriter,Mygod.Runtime.Serialization.Plist.BinaryPlistItem)">
<summary>
Writes an array item to the given <see cref="T:System.IO.BinaryWriter"/>.
</summary>
<param name="writer">
The <see cref="T:System.IO.BinaryWriter"/> to write to.
</param>
<param name="value">The array item to write.</param>
<returns>The number of bytes written.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteDictionary(System.IO.BinaryWriter,Mygod.Runtime.Serialization.Plist.BinaryPlistItem)">
<summary>
Writes a dictionary item to the given <see cref="T:System.IO.BinaryWriter"/>.
</summary>
<param name="writer">
The <see cref="T:System.IO.BinaryWriter"/> to write to.
</param>
<param name="value">The dictionary item to write.</param>
<returns>The number of bytes written.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.BinaryPlistWriter.WriteObjectTable(System.IO.BinaryWriter)">
<summary>
Write the object table to the given <see cref="T:System.IO.BinaryWriter"/>.
</summary>
<param name="writer">
The <see cref="T:System.IO.BinaryWriter"/> to write to.
</param>
<returns>The number of bytes written.</returns>
</member>
<member name="T:Mygod.Runtime.Serialization.Plist.DataContractBinaryPlistSerializer">
<summary>
Serializes data contracts to and from the binary plist format.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.DataContractBinaryPlistSerializer.#ctor(System.Type)">
<summary>
Initializes a new instance of the DataContractBinaryPlistSerializer class.
</summary>
<param name="type">The type of the instances that are serialized or de-serialized.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.DataContractBinaryPlistSerializer.ReadObject(System.IO.Stream)">
<summary>
Reads an object from the specified stream.
</summary>
<param name="stream">The stream to read from.</param>
<returns>The de-serialized object.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.DataContractBinaryPlistSerializer.WriteObject(System.IO.Stream,System.Object)">
<summary>
Writes the complete contents of the given object to the specified stream.
</summary>
<param name="stream">The stream to write to.</param>
<param name="graph">The object to write.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.DataContractBinaryPlistSerializer.WriteObject(System.IO.Stream,System.Object,System.Boolean)">
<summary>
Writes the complete contents of the given object to the specified stream.
</summary>
<param name="stream">The stream to write to.</param>
<param name="graph">The object to write.</param>
<param name="closeStream">A value indicating whether to close the stream after the write operation completes.</param>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.DataContractBinaryPlistSerializer.GetReadablePlistObject(System.Type,System.Object)">
<summary>
Gets the readable plist value of the given object identified by the specified type.
</summary>
<param name="type">The type the object is expected to have after being de-serialized.</param>
<param name="obj">The raw plist object value.</param>
<returns>A readable plist object value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.DataContractBinaryPlistSerializer.GetWritablePlistObject(System.Type,System.Object)">
<summary>
Gets the writable plist value of the given object identified by the specified type.
</summary>
<param name="type">The of the object.</param>
<param name="obj">The object to get the plist value of.</param>
<returns>The plist value of the given object.</returns>
</member>
<member name="T:Mygod.Runtime.Serialization.Plist.EndianConverter">
<summary>
Converts the endian-ness of primitive number types.
</summary>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapEndian(System.Int16)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapEndian(System.UInt16)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapEndian(System.Int32)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapEndian(System.UInt32)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapEndian(System.Int64)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapEndian(System.UInt64)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapInt16(System.Int16)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapInt32(System.Int32)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapInt64(System.Int64)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapUInt32(System.UInt32)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapUInt16(System.UInt16)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.SwapUInt64(System.UInt64)">
<summary>
Swaps the endian-ness of the given value.
</summary>
<param name="value">The value to swap the endian-ness of.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToBigEndianConditional(System.UInt16)">
<summary>
Gets the big-endian value of the given value if the current system is little-endian.
If the curreng system is big-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToBigEndianConditional(System.Int16)">
<summary>
Gets the big-endian value of the given value if the current system is little-endian.
If the curreng system is big-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToBigEndianConditional(System.UInt32)">
<summary>
Gets the big-endian value of the given value if the current system is little-endian.
If the curreng system is big-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToBigEndianConditional(System.Int32)">
<summary>
Gets the big-endian value of the given value if the current system is little-endian.
If the curreng system is big-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToBigEndianConditional(System.UInt64)">
<summary>
Gets the big-endian value of the given value if the current system is little-endian.
If the curreng system is big-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToBigEndianConditional(System.Int64)">
<summary>
Gets the big-endian value of the given value if the current system is little-endian.
If the curreng system is big-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToLittleEndianConditional(System.UInt16)">
<summary>
Gets the little-endian value of the given value if the current system is big-endian.
If the curreng system is little-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToLittleEndianConditional(System.Int16)">
<summary>
Gets the little-endian value of the given value if the current system is big-endian.
If the curreng system is little-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToLittleEndianConditional(System.UInt32)">
<summary>
Gets the little-endian value of the given value if the current system is big-endian.
If the curreng system is little-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToLittleEndianConditional(System.Int32)">
<summary>
Gets the little-endian value of the given value if the current system is big-endian.
If the curreng system is little-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>
</member>
<member name="M:Mygod.Runtime.Serialization.Plist.EndianConverter.ToLittleEndianConditional(System.UInt64)">
<summary>
Gets the little-endian value of the given value if the current system is big-endian.
If the curreng system is little-endian, returns the value as-is.
</summary>
<param name="value">The value to swap if necessary.</param>
<returns>The resulting value.</returns>