forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMsgPack.XML
8549 lines (8549 loc) · 474 KB
/
MsgPack.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>MsgPack</name>
</assembly>
<members>
<member name="T:MsgPack.Serialization.SerializerBuilder`1">
<summary>
Build serializer for <typeparamref name="TObject"/>.
</summary>
<typeparam name="TObject">Object to be serialized/deserialized.</typeparam>
</member>
<member name="M:MsgPack.Serialization.SerializerBuilder`1.#ctor(MsgPack.Serialization.SerializationContext)">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.Serialization.SerializerBuilder`1"/> class.
</summary>
<param name="context">The <see cref="T:MsgPack.Serialization.SerializationContext"/>.</param>
</member>
<member name="M:MsgPack.Serialization.SerializerBuilder`1.CreateSerializer">
<summary>
Creates serializer for <typeparamref name="TObject"/>.
</summary>
<returns>
<see cref="T:MsgPack.Serialization.MessagePackSerializer`1"/>. This value will not be <c>null</c>.
</returns>
</member>
<member name="M:MsgPack.Serialization.SerializerBuilder`1.CreateSerializer(MsgPack.Serialization.SerializingMember[])">
<summary>
Creates serializer for <typeparamref name="TObject"/>.
</summary>
<param name="entries">Serialization target members. This will not be <c>null</c> nor empty.</param>
<returns>
<see cref="T:MsgPack.Serialization.MessagePackSerializer`1"/>. This value will not be <c>null</c>.
</returns>
</member>
<member name="M:MsgPack.Serialization.SerializerBuilder`1.CreateArraySerializer">
<summary>
Creates serializer as <typeparamref name="TObject"/> is array type.
</summary>
<returns>
<see cref="T:MsgPack.Serialization.MessagePackSerializer`1"/>.
This value will not be <c>null</c>.
</returns>
</member>
<member name="M:MsgPack.Serialization.SerializerBuilder`1.CreateMapSerializer">
<summary>
Creates serializer as <typeparamref name="TObject"/> is map type.
</summary>
<returns>
<see cref="T:MsgPack.Serialization.MessagePackSerializer`1"/>.
This value will not be <c>null</c>.
</returns>
</member>
<member name="M:MsgPack.Serialization.SerializerBuilder`1.CreateTupleSerializer">
<summary>
Creates serializer as <typeparamref name="TObject"/> is tuple type.
</summary>
<returns>
<see cref="T:MsgPack.Serialization.MessagePackSerializer`1"/>.
This value will not be <c>null</c>.
</returns>
</member>
<member name="P:MsgPack.Serialization.SerializerBuilder`1.Context">
<summary>
Gets the <see cref="T:MsgPack.Serialization.SerializationContext"/>.
</summary>
<value>
The <see cref="T:MsgPack.Serialization.SerializationContext"/>.
</value>
</member>
<member name="T:MsgPack.Serialization.SerializationExceptions">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Defines common exception factory methods.
</summary>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewValueTypeCannotBeNull(System.String,System.Type,System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that value type cannot be <c>null</c> on deserialization.
</summary>
<param name="name">The name of the member.</param>
<param name="memberType">The type of the member.</param>
<param name="declaringType">The type that declares the member.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewValueTypeCannotBeNull(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that value type cannot be <c>null</c> on deserialization.
</summary>
<param name="type">The target type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="F:MsgPack.Serialization.SerializationExceptions.NewTypeCannotSerializeMethod">
<summary>
<see cref="T:System.Reflection.MethodInfo"/> of <see cref="M:MsgPack.Serialization.SerializationExceptions.NewTypeCannotSerialize(System.Type)"/> method.
</summary>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewTypeCannotSerialize(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that value type cannot serialize.
</summary>
<param name="type">The target type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="F:MsgPack.Serialization.SerializationExceptions.NewTypeCannotDeserializeMethod">
<summary>
<see cref="T:System.Reflection.MethodInfo"/> of <see cref="M:MsgPack.Serialization.SerializationExceptions.NewTypeCannotDeserialize(System.Type)"/> method.
</summary>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewTypeCannotDeserialize(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that value type cannot deserialize.
</summary>
<param name="type">The target type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="F:MsgPack.Serialization.SerializationExceptions.NewMissingItemMethod">
<summary>
<see cref="T:System.Reflection.MethodInfo"/> of <see cref="M:MsgPack.Serialization.SerializationExceptions.NewMissingItem(System.Int32)"/> method.
</summary>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewMissingItem(System.Int32)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that item is not found on the unpacking stream.
</summary>
<param name="index">The index to be unpacking.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewTargetDoesNotHavePublicDefaultConstructor(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that target type is not serializable because it does not have public default constructor.
</summary>
<param name="type">The target type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewTargetDoesNotHavePublicDefaultConstructorNorInitialCapacity(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that target type is not serializable because it does not have both of public default constructor and public constructor with an Int32 parameter.
</summary>
<param name="type">The target type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewNoSerializableFieldsException(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that there are no serializable fields and properties on the target type.
</summary>
<param name="type">The target type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="F:MsgPack.Serialization.SerializationExceptions.NewMissingPropertyMethod">
<summary>
<see cref="T:System.Reflection.MethodInfo"/> of <see cref="M:MsgPack.Serialization.SerializationExceptions.NewMissingProperty(System.String)"/> method.
</summary>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewMissingProperty(System.String)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that required field is not found on the unpacking stream.
</summary>
<param name="name">The name of the property.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="F:MsgPack.Serialization.SerializationExceptions.NewUnexpectedEndOfStreamMethod">
<summary>
<see cref="T:System.Reflection.MethodInfo"/> of <see cref="M:MsgPack.Serialization.SerializationExceptions.NewUnexpectedEndOfStream"/> method.
</summary>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewUnexpectedEndOfStream">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that unpacking stream ends on unexpectedly position.
</summary>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewMissingAddMethod(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that target collection type does not declare appropriate Add(T) method.
</summary>
<param name="type">The target type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewIsNotArrayHeader">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that unpacker is not in the array header, that is the state is invalid.
</summary>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewIsNotMapHeader">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that unpacker is not in the array header, that is the state is invalid.
</summary>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewNotSupportedBecauseCannotInstanciateAbstractType(System.Type)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that operation is not supported because <paramref name="type"/> cannot be instanciated.
</summary>
<param name="type">Type.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewTupleCardinarityIsNotMatch(System.Int32,System.Int32)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the array length does not match to expected tuple cardinality.
</summary>
<param name="expectedTupleCardinality">The expected cardinality of the tuple.</param>
<param name="actualArrayLength">The actual serialized array length.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewIsIncorrectStream(System.Exception)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the underlying stream is not correct semantically because failed to unpack items count of array/map.
</summary>
<param name="innerException">The inner exception for the debug. The value is implementation specific.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewIsTooLargeCollection">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the unpacking collection is too large to represents in the current runtime environment.
</summary>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewEmptyOrUnstartedUnpacker">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the the unpacker does not contain any data because the underlying stream is empty or unpacker has not been started.
</summary>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewNullIsProhibited(System.String)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the member cannot be <c>null</c> or the unpacking value cannot be nil because nil value is explicitly prohibitted.
</summary>
<param name="memberName">The name of the member.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewReadOnlyMemberItemsMustNotBeNull(System.String)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the unpacking value cannot be nil because the target member is read only and its type is collection.
</summary>
<param name="memberName">The name of the member.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewStreamDoesNotContainCollectionForMember(System.String)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the unpacking collection value is not a collection.
</summary>
<param name="memberName">The name of the member.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="M:MsgPack.Serialization.SerializationExceptions.NewUnexpectedArrayLength(System.Int32,System.Int32)">
<summary>
<strong>This is intened to MsgPack for CLI internal use. Do not use this type from application directly.</strong>
Returns new exception to notify that the unpacking array size is not expected length.
</summary>
<param name="expectedLength">Expected, required for deserialization array length.</param>
<param name="actualLength">Actual array length.</param>
<returns><see cref="T:System.Exception"/> instance. It will not be <c>null</c>.</returns>
</member>
<member name="T:MsgPack.Serialization.SerializingMember">
<summary>
Represents serializing member information.
</summary>
</member>
<member name="M:MsgPack.Serialization.EmittingSerializers.Emittion.EmitFor(MsgPack.Serialization.Reflection.TracingILGenerator,System.Reflection.Emit.LocalBuilder,System.Action{MsgPack.Serialization.Reflection.TracingILGenerator,System.Reflection.Emit.LocalBuilder})">
<summary>
Emits 'for' statement on current IL stream.
</summary>
<param name="il">IL generator to be emitted to.</param>
<param name="count">'count' local variable which is <see cref="T:System.Int32"/> type and holds maximum loop count.</param>
<param name="bodyEmitter">Delegate to emit for statement body.</param>
</member>
<member name="M:MsgPack.Serialization.EmittingSerializers.Emittion.EmitForEach(MsgPack.Serialization.Reflection.TracingILGenerator,MsgPack.Serialization.CollectionTraits,System.Reflection.Emit.LocalBuilder,System.Action{MsgPack.Serialization.Reflection.TracingILGenerator,System.Action})">
<summary>
Emits 'foreach' statement on the IL stream.
</summary>
<param name="il">IL generator to be emitted to.</param>
<param name="traits"><see cref="T:MsgPack.Serialization.CollectionTraits"/> which contains traits of the iterating collection.</param>
<param name="collection">'collection' argument index.</param>
<param name="bodyEmitter">Delegate to emit body statement.</param>
</member>
<member name="M:MsgPack.Serialization.EmittingSerializers.Emittion.EmitLoadValue(MsgPack.Serialization.Reflection.TracingILGenerator,System.Reflection.MemberInfo)">
<summary>
Emits appropriate loading member instructions.
</summary>
<param name="il">IL generator to be emitted to.</param>
<param name="member"><see cref="T:System.Reflection.MemberInfo"/> to be loaded.</param>
</member>
<member name="M:MsgPack.Serialization.EmittingSerializers.Emittion.EmitStoreValue(MsgPack.Serialization.Reflection.TracingILGenerator,System.Reflection.MemberInfo)">
<summary>
Emits appropriate storing member instructions.
</summary>
<param name="il">IL generator to be emitted to.</param>
<param name="member"><see cref="T:System.Reflection.MemberInfo"/> to be stored.</param>
</member>
<member name="M:MsgPack.Serialization.EmittingSerializers.Emittion.EmitGetUnpackerItemsCountAsInt32(MsgPack.Serialization.Reflection.TracingILGenerator,System.Int32)">
<summary>
Emits gets <see cref="P:MsgPack.Unpacker.ItemsCount"/> with exception handling.
Note that final state is the value is pushed top of the evaluation stack.
</summary>
<param name="il">IL generator.</param>
<param name="unpackerArgumentIndex">Argument index of the unpacker.</param>
</member>
<member name="T:MsgPack.Serialization.DataMemberContract">
<summary>
Represents member's data contract.
</summary>
</member>
<member name="M:MsgPack.Serialization.DataMemberContract.#ctor(System.Reflection.MemberInfo)">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.Serialization.DataMemberContract"/> struct.
</summary>
<param name="member">The target member.</param>
</member>
<member name="M:MsgPack.Serialization.DataMemberContract.#ctor(System.Reflection.MemberInfo,System.Runtime.Serialization.DataMemberAttribute)">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.Serialization.DataMemberContract"/> struct from <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/>.
</summary>
<param name="member">The target member.</param>
<param name="attribute">The data contract member attribute. This value can be <c>null</c>.</param>
</member>
<member name="M:MsgPack.Serialization.DataMemberContract.#ctor(System.Reflection.MemberInfo,MsgPack.Serialization.MessagePackMemberAttribute)">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.Serialization.DataMemberContract"/> struct from <see cref="T:MsgPack.Serialization.MessagePackMemberAttribute"/>.
</summary>
<param name="member">The target member.</param>
<param name="attribute">The MessagePack member attribute. This value can be <c>null</c>.</param>
</member>
<member name="P:MsgPack.Serialization.DataMemberContract.Name">
<summary>
Gets the name of the member.
</summary>
<value>
The name of the member.
</value>
<seealso cref="T:System.Runtime.Serialization.DataMemberAttribute"/>
</member>
<member name="P:MsgPack.Serialization.DataMemberContract.Id">
<summary>
Gets the ID of the member.
</summary>
<value>
The ID of the member. Default is <c>-1</c>.
</value>
</member>
<member name="P:MsgPack.Serialization.DataMemberContract.NilImplication">
<summary>
Gets the nil implication.
</summary>
<value>
The nil implication.
</value>
</member>
<member name="T:MsgPack.UnpackException">
<summary>
Represents generic unpacking error.
</summary>
</member>
<member name="M:MsgPack.UnpackException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.UnpackException"/> class with the default error message.
</summary>
</member>
<member name="M:MsgPack.UnpackException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.UnpackException"/> class with a specified error message.
</summary>
<param name="message">The message that describes the error. </param>
</member>
<member name="M:MsgPack.UnpackException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.UnpackException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception. </param>
<param name="inner">
The exception that is the cause of the current exception, or a <c>null</c> if no inner exception is specified.
</param>
</member>
<member name="M:MsgPack.UnpackException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.UnpackException"/> class with serialized data.
</summary>
<param name="info">
The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.
</param>
<param name="context">
The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
<exception cref="T:System.ArgumentNullException">
The <paramref name="info"/> parameter is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
The class name is <c>null</c> or <see cref="P:HResult"/> is zero (0).
</exception>
</member>
<member name="T:MsgPack.Serialization.EmittingSerializers.EmittingSerializerBuilderLogics">
<summary>
Defines non-generic functions of <see cref="T:MsgPack.Serialization.EmittingSerializers.EmittingSerializerBuilder`1"/>.
</summary>
</member>
<member name="T:MsgPack.Serialization.MessagePackSerializer`1">
<summary>
Defines base contract for object serialization.
</summary>
<typeparam name="T">Target type.</typeparam>
<remarks>
<para>
This class implements strongly typed serialization and deserialization.
</para>
<para>
When the underlying stream does not contain strongly typed or contains dynamically typed objects,
you should use <see cref="T:MsgPack.Unpacker"/> directly and take advantage of <see cref="T:MsgPack.MessagePackObject"/>.
</para>
</remarks>
<seealso cref="T:MsgPack.Unpacker"/>
<seealso cref="T:MsgPack.Unpacking"/>
</member>
<member name="T:MsgPack.Serialization.IMessagePackSerializer">
<summary>
Defines non-generic message pack serializer interface.
</summary>
</member>
<member name="M:MsgPack.Serialization.IMessagePackSerializer.PackTo(MsgPack.Packer,System.Object)">
<summary>
Serialize specified object with specified <see cref="T:MsgPack.Packer"/>.
</summary>
<param name="packer"><see cref="T:MsgPack.Packer"/> which packs values in <paramref name="objectTree"/>.</param>
<param name="objectTree">Object to be serialized.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="packer"/> is <c>null</c>.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="objectTree"/> is not compatible for this serializer.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
The type of <paramref name="objectTree"/> is not serializable etc.
</exception>
</member>
<member name="M:MsgPack.Serialization.IMessagePackSerializer.UnpackFrom(MsgPack.Unpacker)">
<summary>
Deserialize object with specified <see cref="T:MsgPack.Unpacker"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree.</param>
<returns>Deserialized object.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="unpacker"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Failed to deserialize object due to invalid unpacker state, stream content, or so.
</exception>
<exception cref="T:System.NotSupportedException">
Deserializing type is abstract type.
</exception>
</member>
<member name="M:MsgPack.Serialization.IMessagePackSerializer.UnpackTo(MsgPack.Unpacker,System.Object)">
<summary>
Deserialize collection items with specified <see cref="T:MsgPack.Unpacker"/> and stores them to <paramref name="collection"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree.</param>
<param name="collection">Collection that the items to be stored.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="unpacker"/> is <c>null</c>.
Or <paramref name="collection"/> is <c>null</c>.
</exception>
<exception cref="T:System.ArgumentException">
<paramref name="collection"/> is not compatible for this serializer.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Failed to deserialize object due to invalid unpacker state, stream content, or so.
</exception>
<exception cref="T:System.NotSupportedException">
The type of <paramref name="collection"/> is not serializable etc.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.Pack(System.IO.Stream,`0)">
<summary>
Serialize specified object to the <see cref="T:System.IO.Stream"/>.
</summary>
<param name="stream">Destination <see cref="T:System.IO.Stream"/>.</param>
<param name="objectTree">Object to be serialized.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="stream"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
<typeparamref name="T"/> is not serializable etc.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.Unpack(System.IO.Stream)">
<summary>
Deserialize object from the <see cref="T:System.IO.Stream"/>.
</summary>
<param name="stream">Source <see cref="T:System.IO.Stream"/>.</param>
<returns>Deserialized object.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="stream"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
<typeparamref name="T"/> is not serializable etc.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.PackTo(MsgPack.Packer,`0)">
<summary>
Serialize specified object with specified <see cref="T:MsgPack.Packer"/>.
</summary>
<param name="packer"><see cref="T:MsgPack.Packer"/> which packs values in <paramref name="objectTree"/>.</param>
<param name="objectTree">Object to be serialized.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="packer"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
<typeparamref name="T"/> is not serializable etc.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.PackToCore(MsgPack.Packer,`0)">
<summary>
Serialize specified object with specified <see cref="T:MsgPack.Packer"/>.
</summary>
<param name="packer"><see cref="T:MsgPack.Packer"/> which packs values in <paramref name="objectTree"/>. This value will not be <c>null</c>.</param>
<param name="objectTree">Object to be serialized.</param>
<exception cref="T:System.Runtime.Serialization.SerializationException">
<typeparamref name="T"/> is not serializable etc.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.UnpackFrom(MsgPack.Unpacker)">
<summary>
Deserialize object with specified <see cref="T:MsgPack.Unpacker"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree.</param>
<returns>Deserialized object.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="unpacker"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Failed to deserialize object due to invalid unpacker state, stream content, or so.
</exception>
<exception cref="T:System.NotSupportedException">
<typeparamref name="T"/> is abstract type.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.UnpackFromCore(MsgPack.Unpacker)">
<summary>
Deserialize object with specified <see cref="T:MsgPack.Unpacker"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree. This value will not be <c>null</c>.</param>
<returns>Deserialized object.</returns>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Failed to deserialize object due to invalid unpacker state, stream content, or so.
</exception>
<exception cref="T:System.NotSupportedException">
<typeparamref name="T"/> is abstract type.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.UnpackTo(MsgPack.Unpacker,`0)">
<summary>
Deserialize collection items with specified <see cref="T:MsgPack.Unpacker"/> and stores them to <paramref name="collection"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree.</param>
<param name="collection">Collection that the items to be stored.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="unpacker"/> is <c>null</c>.
Or <paramref name="collection"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Failed to deserialize object due to invalid unpacker state, stream content, or so.
</exception>
<exception cref="T:System.NotSupportedException">
<typeparamref name="T"/> is not collection.
</exception>
</member>
<member name="M:MsgPack.Serialization.MessagePackSerializer`1.UnpackToCore(MsgPack.Unpacker,`0)">
<summary>
Deserialize collection items with specified <see cref="T:MsgPack.Unpacker"/> and stores them to <paramref name="collection"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree. This value will not be <c>null</c>.</param>
<param name="collection">Collection that the items to be stored. This value will not be <c>null</c>.</param>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Failed to deserialize object due to invalid unpacker state, stream content, or so.
</exception>
<exception cref="T:System.NotSupportedException">
<typeparamref name="T"/> is not collection.
</exception>
</member>
<member name="T:MsgPack.Serialization.AutoMessagePackSerializer`1">
<summary>
<see cref="T:MsgPack.Serialization.MessagePackSerializer`1"/> based on reflection, opt-out based.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:MsgPack.Serialization.AutoMessagePackSerializer`1.#ctor(MsgPack.Serialization.SerializationContext,System.Func{MsgPack.Serialization.SerializationContext,MsgPack.Serialization.SerializerBuilder{`0}})">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.Serialization.AutoMessagePackSerializer`1"/> class.
</summary>
</member>
<member name="M:MsgPack.Serialization.AutoMessagePackSerializer`1.PackToCore(MsgPack.Packer,`0)">
<summary>
Serialize specified object with specified <see cref="T:MsgPack.Packer"/>.
</summary>
<param name="packer"><see cref="T:MsgPack.Packer"/> which packs values in <paramref name="objectTree"/>. This value will not be <c>null</c>.</param>
<param name="objectTree">Object to be serialized.</param>
</member>
<member name="M:MsgPack.Serialization.AutoMessagePackSerializer`1.UnpackFromCore(MsgPack.Unpacker)">
<summary>
Deserialize object with specified <see cref="T:MsgPack.Unpacker"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree. This value will not be <c>null</c>.</param>
<returns>Deserialized object.</returns>
</member>
<member name="M:MsgPack.Serialization.AutoMessagePackSerializer`1.UnpackToCore(MsgPack.Unpacker,`0)">
<summary>
Deserialize collection items with specified <see cref="T:MsgPack.Unpacker"/> and stores them to <paramref name="collection"/>.
</summary>
<param name="unpacker"><see cref="T:MsgPack.Unpacker"/> which unpacks values of resulting object tree. This value will not be <c>null</c>.</param>
<param name="collection">Collection that the items to be stored. This value will not be <c>null</c>.</param>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Failed to deserialize object due to invalid unpacker state, stream content, or so.
</exception>
<exception cref="T:System.NotSupportedException">
<typeparamref name="T"/> is not collection.
</exception>
</member>
<member name="T:MsgPack.Serialization.ExpressionSerializers.SequenceExpressionMessagePackSerializer`1">
<summary>
<see cref="T:MsgPack.Serialization.MessagePackSerializer`1"/> for a sequential collection using expression tree.
</summary>
<typeparam name="T">The type of element.</typeparam>
</member>
<member name="T:MsgPack.Serialization.ExpressionSerializers.ArrayFormatObjectExpressionMessagePackSerializer`1">
<summary>
<see cref="T:MsgPack.Serialization.ExpressionSerializers.ObjectExpressionMessagePackSerializer`1"/> for array format stream.
</summary>
<typeparam name="T">The type of target type.</typeparam>
</member>
<member name="T:MsgPack.Serialization.ExpressionSerializers.ObjectExpressionMessagePackSerializer`1">
<summary>
Implements expression tree based serializer for general object.
</summary>
<typeparam name="T">The type of target object.</typeparam>
</member>
<member name="T:MsgPack.PackerUnpackerExtensions">
<summary>
Defines extension method to pack or unpack various objects.
</summary>
</member>
<member name="M:MsgPack.PackerUnpackerExtensions.Pack``1(MsgPack.Packer,``0)">
<summary>
Packs specified value with the default context.
</summary>
<typeparam name="T">The type of the value.</typeparam>
<param name="source">The <see cref="T:MsgPack.Packer"/>.</param>
<param name="value">The value to be serialized.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="source"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Cannot serialize <paramref name="value"/>.
</exception>
</member>
<member name="M:MsgPack.PackerUnpackerExtensions.Pack``1(MsgPack.Packer,``0,MsgPack.Serialization.SerializationContext)">
<summary>
Packs specified value with the specified context.
</summary>
<typeparam name="T">The type of the value.</typeparam>
<param name="source">The <see cref="T:MsgPack.Packer"/>.</param>
<param name="value">The value to be serialized.</param>
<param name="context">The <see cref="T:MsgPack.Serialization.SerializationContext"/> holds shared serializers.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="source"/> is <c>null</c>.
Or <paramref name="context"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Cannot serialize <paramref name="value"/>.
</exception>
</member>
<member name="M:MsgPack.PackerUnpackerExtensions.PackObject(MsgPack.Packer,System.Object)">
<summary>
Packs specified value with the default context.
</summary>
<param name="source">The <see cref="T:MsgPack.Packer"/>.</param>
<param name="value">The value to be serialized.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="source"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Cannot serialize <paramref name="value"/>.
</exception>
</member>
<member name="M:MsgPack.PackerUnpackerExtensions.PackObject(MsgPack.Packer,System.Object,MsgPack.Serialization.SerializationContext)">
<summary>
Packs specified value with the specified context.
</summary>
<param name="source">The <see cref="T:MsgPack.Packer"/>.</param>
<param name="value">The value to be serialized.</param>
<param name="context">The <see cref="T:MsgPack.Serialization.SerializationContext"/> holds shared serializers.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="source"/> is <c>null</c>.
Or <paramref name="context"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Cannot serialize <paramref name="value"/>.
</exception>
</member>
<member name="M:MsgPack.PackerUnpackerExtensions.Unpack``1(MsgPack.Unpacker)">
<summary>
Unpacks specified type value with the default context.
</summary>
<typeparam name="T">The type of the value.</typeparam>
<param name="source">The <see cref="T:MsgPack.Unpacker"/>.</param>
<returns>The deserialized value.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="source"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Cannot deserialize <typeparamref name="T"/> value.
</exception>
</member>
<member name="M:MsgPack.PackerUnpackerExtensions.Unpack``1(MsgPack.Unpacker,MsgPack.Serialization.SerializationContext)">
<summary>
Unpacks specified type value with the specified context.
</summary>
<typeparam name="T">The type of the value.</typeparam>
<param name="source">The <see cref="T:MsgPack.Unpacker"/>.</param>
<param name="context">The <see cref="T:MsgPack.Serialization.SerializationContext"/> holds shared serializers.</param>
<returns>The deserialized value.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="source"/> is <c>null</c>.
Or <paramref name="context"/> is <c>null</c>.
</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException">
Cannot deserialize <typeparamref name="T"/> value.
</exception>
</member>
<member name="T:MsgPack.MessagePackConvert">
<summary>
Define common convert rountines specific to MessagePack.
</summary>
</member>
<member name="M:MsgPack.MessagePackConvert.EncodeString(System.String)">
<summary>
Encode specified string by default encoding.
</summary>
<param name="value">String value.</param>
<returns>Encoded <paramref name="value"/>.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="value"/> is null.
</exception>
</member>
<member name="M:MsgPack.MessagePackConvert.DecodeStringStrict(System.Byte[])">
<summary>
Decode specified byte[] by default encoding.
</summary>
<param name="value">Byte[] value.</param>
<returns>Decoded <paramref name="value"/>.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="value"/> is null.
</exception>
<exception cref="T:System.Text.DecoderFallbackException">
<paramref name="value"/> contains non-UTF-8 bits.
</exception>
</member>
<member name="M:MsgPack.MessagePackConvert.ToDateTimeOffset(System.Int64)">
<summary>
Convert specified <see cref="T:System.Int64"/> to <see cref="T:System.DateTimeOffset"/>.
</summary>
<param name="value">
<see cref="T:System.Int64"/> value which is unpacked from packed message and may represent date-time value.
</param>
<returns>
<see cref="T:System.DateTimeOffset"/>. Offset of this value always 0.
</returns>
</member>
<member name="M:MsgPack.MessagePackConvert.ToDateTime(System.Int64)">
<summary>
Convert specified <see cref="T:System.Int64"/> to <see cref="T:System.DateTime"/>.
</summary>
<param name="value">
<see cref="T:System.Int64"/> value which is unpacked from packed message and may represent date-time value.
</param>
<returns>
<see cref="T:System.DateTime"/>. This value is always UTC.
</returns>
</member>
<member name="M:MsgPack.MessagePackConvert.FromDateTimeOffset(System.DateTimeOffset)">
<summary>
Convert specified <see cref="T:System.DateTimeOffset"/> to <see cref="T:System.Int64"/> as MessagePack defacto-standard.
</summary>
<param name="value"><see cref="T:System.DateTimeOffset"/>.</param>
<returns>
UTC epoc time from 1970/1/1 0:00:00, in milliseconds.
</returns>
</member>
<member name="M:MsgPack.MessagePackConvert.FromDateTime(System.DateTime)">
<summary>
Convert specified <see cref="T:System.DateTime"/> to <see cref="T:System.Int64"/> as MessagePack defacto-standard.
</summary>
<param name="value"><see cref="T:System.DateTime"/>.</param>
<returns>
UTC epoc time from 1970/1/1 0:00:00, in milliseconds.
</returns>
</member>
<member name="T:MsgPack.MessagePackObjectDictionary">
<summary>
Implements <see cref="T:System.Collections.Generic.IDictionary`2"/> for <see cref="T:MsgPack.MessagePackObject"/>.
</summary>
<remarks>
This dictionary handles <see cref="T:MsgPack.MessagePackObject"/> type semantics for the key.
Additionally, this dictionary implements 'freezing' feature.
For details, see <see cref="P:MsgPack.MessagePackObjectDictionary.IsFrozen"/>, <see cref="M:MsgPack.MessagePackObjectDictionary.Freeze"/>, and <see cref="M:MsgPack.MessagePackObjectDictionary.AsFrozen"/>.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.#ctor">
<summary>
Initializes an empty new instance of the <see cref="T:MsgPack.MessagePackObjectDictionary"/> class with default capacity.
</summary>
<remarks>
This operation is an O(1) operation.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.#ctor(System.Int32)">
<summary>
Initializes an empty new instance of the <see cref="T:MsgPack.MessagePackObjectDictionary"/> class with specified initial capacity.
</summary>
<param name="initialCapacity">The initial capacity.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="initialCapacity"/> is negative.
</exception>
<remarks>
This operation is an O(1) operation.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.#ctor(System.Collections.Generic.IDictionary{MsgPack.MessagePackObject,MsgPack.MessagePackObject})">
<summary>
Initializes a new instance of the <see cref="T:MsgPack.MessagePackObjectDictionary"/> class.
</summary>
<param name="dictionary">The dictionary to be copied from.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="dictionary"/> is <c>null</c>.
</exception>
<exception cref="T:System.ArgumentException">
Failed to copy from <paramref name="dictionary"/>.
</exception>
<remarks>
This constructor takes <em>O(N)</em> time, <em>N</em> is <see cref="P:ICollection{T}.Count"/> of <paramref name="dictionary"/>.
Initial capacity will be <see cref="P:ICollection{T}.Count"/> of <paramref name="dictionary"/>.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.ContainsKey(MsgPack.MessagePackObject)">
<summary>
Determines whether the <see cref="T:MsgPack.MessagePackObjectDictionary"/> contains an element with the specified key.
</summary>
<param name="key">The key to locate in the <see cref="T:MsgPack.MessagePackObjectDictionary"/>.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="key"/> is <see cref="F:MsgPack.MessagePackObject.Nil"/>.
</exception>
<returns>
<c>true</c> if the <see cref="T:MsgPack.MessagePackObjectDictionary"/> contains an element with the key; otherwise, <c>false</c>.
</returns>
<remarks>
This method approaches an O(1) operation.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.ContainsValue(MsgPack.MessagePackObject)">
<summary>
Determines whether the <see cref="T:MsgPack.MessagePackObjectDictionary"/> contains an element with the specified value.
</summary>
<param name="value">The value to locate in the <see cref="T:MsgPack.MessagePackObjectDictionary"/>.</param>
<returns>
<c>true</c> if the <see cref="T:MsgPack.MessagePackObjectDictionary"/> contains an element with the value; otherwise, <c>false</c>.
</returns>
<remarks>
This method approaches an O(<em>N</em>) operation where <em>N</em> is <see cref="P:MsgPack.MessagePackObjectDictionary.Count"/>.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.TryGetValue(MsgPack.MessagePackObject,MsgPack.MessagePackObject@)">
<summary>
Gets the value associated with the specified key.
</summary>
<param name="key">
The key whose value to get.
</param>
<param name="value">
When this method returns, the value associated with the specified key, if the key is found;
otherwise, the default value for the type of the <paramref name="value"/> parameter.
This parameter is passed uninitialized.
</param>
<returns>
<c>true</c> if this dictionary contains an element with the specified key; otherwise, <c>false</c>.
</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="key"/> is <see cref="F:MsgPack.MessagePackObject.Nil"/>.
</exception>
<remarks>
<para>
Note that tiny integers are considered equal regardless of its CLI <see cref="T:System.Type"/>,
and UTF-8 encoded bytes are considered equals to <see cref="T:System.String"/>.
</para>
<para>
This method approaches an O(1) operation.
</para>
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.Add(MsgPack.MessagePackObject,MsgPack.MessagePackObject)">
<summary>
Adds the specified key and value to the dictionary.
</summary>
<param name="key">
The key of the element to add.
</param>
<param name="value">
The value of the element to add. The value can be <c>null</c> for reference types.
</param>
<returns>
An element with the same key already does not exist in the dictionary and sucess to add then newly added node;
otherwise <c>null</c>.
</returns>
<exception cref="T:System.ArgumentException">
<paramref name="key"/> already exists in this dictionary.
Note that tiny integers are considered equal regardless of its CLI <see cref="T:System.Type"/>,
and UTF-8 encoded bytes are considered equals to <see cref="T:System.String"/>.
</exception>
<exception cref="T:System.ArgumentNullException">
<paramref name="key"/> is <see cref="F:MsgPack.MessagePackObject.Nil"/>.
</exception>
<remarks>
If <see cref="P:MsgPack.MessagePackObjectDictionary.Count"/> is less than the capacity, this method approaches an O(1) operation.
If the capacity must be increased to accommodate the new element,
this method becomes an O(<em>N</em>) operation, where <em>N</em> is <see cref="P:MsgPack.MessagePackObjectDictionary.Count"/>.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.Remove(MsgPack.MessagePackObject)">
<summary>
Removes the element with the specified key from the <see cref="T:MsgPack.MessagePackObjectDictionary"/>.
</summary>
<param name="key">The key of the element to remove.</param>
<returns>
<c>true</c> if the element is successfully removed; otherwise, <c>false</c>.
This method also returns false if <paramref name="key"/> was not found in the original <see cref="T:MsgPack.MessagePackObjectDictionary"/>.
</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="key"/> is <see cref="F:MsgPack.MessagePackObject.Nil"/>.
</exception>
<remarks>
This method approaches an O(1) operation.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.Clear">
<summary>
Removes all items from the <see cref="T:MsgPack.MessagePackObjectDictionary"/>.
</summary>
<remarks>
This method approaches an O(<em>N</em>) operation, where <em>N</em> is <see cref="P:MsgPack.MessagePackObjectDictionary.Count"/>.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.GetEnumerator">
<summary>
Returns an enumerator that iterates through the <see cref="T:MsgPack.MessagePackObjectDictionary"/>.
</summary>
<returns>
Returns an enumerator that iterates through the <see cref="T:MsgPack.MessagePackObjectDictionary"/>.
</returns>
<remarks>
This method is an O(1) operation.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.Freeze">
<summary>
Freezes this instance.
</summary>
<returns>
This instance itself.
This value will not be <c>null</c> and its <see cref="P:MsgPack.MessagePackObjectDictionary.IsFrozen"/> is <c>true</c>.
</returns>
<remarks>
This method freezes this instance itself.
This operation is an O(1) operation.
</remarks>
</member>
<member name="M:MsgPack.MessagePackObjectDictionary.AsFrozen">
<summary>
Gets a copy of this instance as frozen instance.
</summary>
<returns>
New <see cref="T:MsgPack.MessagePackObjectDictionary"/> instance which contains same items as this instance.
This value will not be <c>null</c> and its <see cref="P:MsgPack.MessagePackObjectDictionary.IsFrozen"/> is <c>true</c>.
</returns>