-
Notifications
You must be signed in to change notification settings - Fork 0
/
Google.Protobuf.xml
10141 lines (9966 loc) · 521 KB
/
Google.Protobuf.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>Google.Protobuf</name>
</assembly>
<members>
<member name="T:Google.Protobuf.ByteArray">
<summary>
Provides a utility routine to copy small arrays much more quickly than Buffer.BlockCopy
</summary>
</member>
<member name="F:Google.Protobuf.ByteArray.CopyThreshold">
<summary>
The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy
</summary>
</member>
<member name="M:Google.Protobuf.ByteArray.Copy(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32)">
<summary>
Determines which copy routine to use based on the number of bytes to be copied.
</summary>
</member>
<member name="M:Google.Protobuf.ByteArray.Reverse(System.Byte[])">
<summary>
Reverses the order of bytes in the array
</summary>
</member>
<member name="T:Google.Protobuf.ByteString">
<summary>
Immutable array of bytes.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.AttachBytes(System.ReadOnlyMemory{System.Byte})">
<summary>
Internal use only. Ensure that the provided memory is not mutated and belongs to this instance.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.AttachBytes(System.Byte[])">
<summary>
Internal use only. Ensure that the provided memory is not mutated and belongs to this instance.
This method encapsulates converting array to memory. Reduces need for SecuritySafeCritical
in .NET Framework.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.#ctor(System.ReadOnlyMemory{System.Byte})">
<summary>
Constructs a new ByteString from the given memory. The memory is
*not* copied, and must not be modified after this constructor is called.
</summary>
</member>
<member name="P:Google.Protobuf.ByteString.Empty">
<summary>
Returns an empty ByteString.
</summary>
</member>
<member name="P:Google.Protobuf.ByteString.Length">
<summary>
Returns the length of this ByteString in bytes.
</summary>
</member>
<member name="P:Google.Protobuf.ByteString.IsEmpty">
<summary>
Returns <c>true</c> if this byte string is empty, <c>false</c> otherwise.
</summary>
</member>
<member name="P:Google.Protobuf.ByteString.Span">
<summary>
Provides read-only access to the data of this <see cref="T:Google.Protobuf.ByteString"/>.
No data is copied so this is the most efficient way of accessing.
</summary>
</member>
<member name="P:Google.Protobuf.ByteString.Memory">
<summary>
Provides read-only access to the data of this <see cref="T:Google.Protobuf.ByteString"/>.
No data is copied so this is the most efficient way of accessing.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.ToByteArray">
<summary>
Converts this <see cref="T:Google.Protobuf.ByteString"/> into a byte array.
</summary>
<remarks>The data is copied - changes to the returned array will not be reflected in this <c>ByteString</c>.</remarks>
<returns>A byte array with the same data as this <c>ByteString</c>.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.ToBase64">
<summary>
Converts this <see cref="T:Google.Protobuf.ByteString"/> into a standard base64 representation.
</summary>
<returns>A base64 representation of this <c>ByteString</c>.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.FromBase64(System.String)">
<summary>
Constructs a <see cref="T:Google.Protobuf.ByteString" /> from the Base64 Encoded String.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.FromStream(System.IO.Stream)">
<summary>
Constructs a <see cref="T:Google.Protobuf.ByteString"/> from data in the given stream, synchronously.
</summary>
<remarks>If successful, <paramref name="stream"/> will be read completely, from the position
at the start of the call.</remarks>
<param name="stream">The stream to copy into a ByteString.</param>
<returns>A ByteString with content read from the given stream.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.FromStreamAsync(System.IO.Stream,System.Threading.CancellationToken)">
<summary>
Constructs a <see cref="T:Google.Protobuf.ByteString"/> from data in the given stream, asynchronously.
</summary>
<remarks>If successful, <paramref name="stream"/> will be read completely, from the position
at the start of the call.</remarks>
<param name="stream">The stream to copy into a ByteString.</param>
<param name="cancellationToken">The cancellation token to use when reading from the stream, if any.</param>
<returns>A ByteString with content read from the given stream.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.CopyFrom(System.Byte[])">
<summary>
Constructs a <see cref="T:Google.Protobuf.ByteString" /> from the given array. The contents
are copied, so further modifications to the array will not
be reflected in the returned ByteString.
This method can also be invoked in <c>ByteString.CopyFrom(0xaa, 0xbb, ...)</c> form
which is primarily useful for testing.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.CopyFrom(System.Byte[],System.Int32,System.Int32)">
<summary>
Constructs a <see cref="T:Google.Protobuf.ByteString" /> from a portion of a byte array.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.CopyFrom(System.ReadOnlySpan{System.Byte})">
<summary>
Constructs a <see cref="T:Google.Protobuf.ByteString" /> from a read only span. The contents
are copied, so further modifications to the span will not
be reflected in the returned <see cref="T:Google.Protobuf.ByteString" />.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.CopyFrom(System.String,System.Text.Encoding)">
<summary>
Creates a new <see cref="T:Google.Protobuf.ByteString" /> by encoding the specified text with
the given encoding.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.CopyFromUtf8(System.String)">
<summary>
Creates a new <see cref="T:Google.Protobuf.ByteString" /> by encoding the specified text in UTF-8.
</summary>
</member>
<member name="P:Google.Protobuf.ByteString.Item(System.Int32)">
<summary>
Returns the byte at the given index.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.ToString(System.Text.Encoding)">
<summary>
Converts this <see cref="T:Google.Protobuf.ByteString"/> into a string by applying the given encoding.
</summary>
<remarks>
This method should only be used to convert binary data which was the result of encoding
text with the given encoding.
</remarks>
<param name="encoding">The encoding to use to decode the binary data into text.</param>
<returns>The result of decoding the binary data with the given decoding.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.ToStringUtf8">
<summary>
Converts this <see cref="T:Google.Protobuf.ByteString"/> into a string by applying the UTF-8 encoding.
</summary>
<remarks>
This method should only be used to convert binary data which was the result of encoding
text with UTF-8.
</remarks>
<returns>The result of decoding the binary data with the given decoding.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.GetEnumerator">
<summary>
Returns an iterator over the bytes in this <see cref="T:Google.Protobuf.ByteString"/>.
</summary>
<returns>An iterator over the bytes in this object.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an iterator over the bytes in this <see cref="T:Google.Protobuf.ByteString"/>.
</summary>
<returns>An iterator over the bytes in this object.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.CreateCodedInput">
<summary>
Creates a CodedInputStream from this ByteString's data.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.op_Equality(Google.Protobuf.ByteString,Google.Protobuf.ByteString)">
<summary>
Compares two byte strings for equality.
</summary>
<param name="lhs">The first byte string to compare.</param>
<param name="rhs">The second byte string to compare.</param>
<returns><c>true</c> if the byte strings are equal; false otherwise.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.op_Inequality(Google.Protobuf.ByteString,Google.Protobuf.ByteString)">
<summary>
Compares two byte strings for inequality.
</summary>
<param name="lhs">The first byte string to compare.</param>
<param name="rhs">The second byte string to compare.</param>
<returns><c>false</c> if the byte strings are equal; true otherwise.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.Equals(System.Object)">
<summary>
Compares this byte string with another object.
</summary>
<param name="obj">The object to compare this with.</param>
<returns><c>true</c> if <paramref name="obj"/> refers to an equal <see cref="T:Google.Protobuf.ByteString"/>; <c>false</c> otherwise.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.GetHashCode">
<summary>
Returns a hash code for this object. Two equal byte strings
will return the same hash code.
</summary>
<returns>A hash code for this object.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.Equals(Google.Protobuf.ByteString)">
<summary>
Compares this byte string with another.
</summary>
<param name="other">The <see cref="T:Google.Protobuf.ByteString"/> to compare this with.</param>
<returns><c>true</c> if <paramref name="other"/> refers to an equal byte string; <c>false</c> otherwise.</returns>
</member>
<member name="M:Google.Protobuf.ByteString.CopyTo(System.Byte[],System.Int32)">
<summary>
Copies the entire byte array to the destination array provided at the offset specified.
</summary>
</member>
<member name="M:Google.Protobuf.ByteString.WriteTo(System.IO.Stream)">
<summary>
Writes the entire byte array to the provided stream
</summary>
</member>
<member name="T:Google.Protobuf.ByteStringAsync">
<summary>
SecuritySafeCritical attribute can not be placed on types with async methods.
This class has ByteString's async methods so it can be marked with SecuritySafeCritical.
</summary>
</member>
<member name="T:Google.Protobuf.CodedInputStream">
<summary>
Reads and decodes protocol message fields.
</summary>
<remarks>
<para>
This class is generally used by generated code to read appropriate
primitives from the stream. It effectively encapsulates the lowest
levels of protocol buffer format.
</para>
<para>
Repeated fields and map fields are not handled by this class; use <see cref="T:Google.Protobuf.Collections.RepeatedField`1"/>
and <see cref="T:Google.Protobuf.Collections.MapField`2"/> to serialize such fields.
</para>
</remarks>
</member>
<member name="F:Google.Protobuf.CodedInputStream.leaveOpen">
<summary>
Whether to leave the underlying stream open when disposing of this stream.
This is always true when there's no stream.
</summary>
</member>
<member name="F:Google.Protobuf.CodedInputStream.buffer">
<summary>
Buffer of data read from the stream or provided at construction time.
</summary>
</member>
<member name="F:Google.Protobuf.CodedInputStream.input">
<summary>
The stream to read further input from, or null if the byte array buffer was provided
directly on construction, with no further data available.
</summary>
</member>
<member name="F:Google.Protobuf.CodedInputStream.state">
<summary>
The parser state is kept separately so that other parse implementations can reuse the same
parsing primitives.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.#ctor(System.Byte[])">
<summary>
Creates a new CodedInputStream reading data from the given byte array.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
<summary>
Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> that reads from the given byte array slice.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream)">
<summary>
Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> reading data from the given stream, which will be disposed
when the returned object is disposed.
</summary>
<param name="input">The stream to read from.</param>
</member>
<member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> reading data from the given stream.
</summary>
<param name="input">The stream to read from.</param>
<param name="leaveOpen"><c>true</c> to leave <paramref name="input"/> open when the returned
<c cref="T:Google.Protobuf.CodedInputStream"/> is disposed; <c>false</c> to dispose of the given stream when the
returned object is disposed.</param>
</member>
<member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new CodedInputStream reading data from the given
stream and buffer, using the default limits.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
<summary>
Creates a new CodedInputStream reading data from the given
stream and buffer, using the specified limits.
</summary>
<remarks>
This chains to the version with the default limits instead of vice versa to avoid
having to check that the default values are valid every time.
</remarks>
</member>
<member name="M:Google.Protobuf.CodedInputStream.CreateWithLimits(System.IO.Stream,System.Int32,System.Int32)">
<summary>
Creates a <see cref="T:Google.Protobuf.CodedInputStream"/> with the specified size and recursion limits, reading
from an input stream.
</summary>
<remarks>
This method exists separately from the constructor to reduce the number of constructor overloads.
It is likely to be used considerably less frequently than the constructors, as the default limits
are suitable for most use cases.
</remarks>
<param name="input">The input stream to read from</param>
<param name="sizeLimit">The total limit of data to read from the stream.</param>
<param name="recursionLimit">The maximum recursion depth to allow while reading.</param>
<returns>A <c>CodedInputStream</c> reading from <paramref name="input"/> with the specified size
and recursion limits.</returns>
</member>
<member name="P:Google.Protobuf.CodedInputStream.Position">
<summary>
Returns the current position in the input stream, or the position in the input buffer
</summary>
</member>
<member name="P:Google.Protobuf.CodedInputStream.LastTag">
<summary>
Returns the last tag read, or 0 if no tags have been read or we've read beyond
the end of the stream.
</summary>
</member>
<member name="P:Google.Protobuf.CodedInputStream.SizeLimit">
<summary>
Returns the size limit for this stream.
</summary>
<remarks>
This limit is applied when reading from the underlying stream, as a sanity check. It is
not applied when reading from a byte array data source without an underlying stream.
The default value is Int32.MaxValue.
</remarks>
<value>
The size limit.
</value>
</member>
<member name="P:Google.Protobuf.CodedInputStream.RecursionLimit">
<summary>
Returns the recursion limit for this stream. This limit is applied whilst reading messages,
to avoid maliciously-recursive data.
</summary>
<remarks>
The default limit is 100.
</remarks>
<value>
The recursion limit for this stream.
</value>
</member>
<member name="P:Google.Protobuf.CodedInputStream.DiscardUnknownFields">
<summary>
Internal-only property; when set to true, unknown fields will be discarded while parsing.
</summary>
</member>
<member name="P:Google.Protobuf.CodedInputStream.ExtensionRegistry">
<summary>
Internal-only property; provides extension identifiers to compatible messages while parsing.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.Dispose">
<summary>
Disposes of this instance, potentially closing any underlying stream.
</summary>
<remarks>
As there is no flushing to perform here, disposing of a <see cref="T:Google.Protobuf.CodedInputStream"/> which
was constructed with the <c>leaveOpen</c> option parameter set to <c>true</c> (or one which
was constructed to read from a byte array) has no effect.
</remarks>
</member>
<member name="M:Google.Protobuf.CodedInputStream.CheckReadEndOfStreamTag">
<summary>
Verifies that the last call to ReadTag() returned tag 0 - in other words,
we've reached the end of the stream when we expected to.
</summary>
<exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The
tag read was not the one specified</exception>
</member>
<member name="M:Google.Protobuf.CodedInputStream.PeekTag">
<summary>
Peeks at the next field tag. This is like calling <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/>, but the
tag is not consumed. (So a subsequent call to <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/> will return the
same value.)
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadTag">
<summary>
Reads a field tag, returning the tag of 0 for "end of stream".
</summary>
<remarks>
If this method returns 0, it doesn't necessarily mean the end of all
the data in this CodedInputStream; it may be the end of the logical stream
for an embedded message, for example.
</remarks>
<returns>The next field tag, or 0 for end of stream. (0 is never a valid tag.)</returns>
</member>
<member name="M:Google.Protobuf.CodedInputStream.SkipLastField">
<summary>
Skips the data for the field with the tag we've just read.
This should be called directly after <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/>, when
the caller wishes to skip an unknown field.
</summary>
<remarks>
This method throws <see cref="T:Google.Protobuf.InvalidProtocolBufferException"/> if the last-read tag was an end-group tag.
If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the
start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly
resulting in an error if an end-group tag has not been paired with an earlier start-group tag.
</remarks>
<exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The last tag was an end-group tag</exception>
<exception cref="T:System.InvalidOperationException">The last read operation read to the end of the logical stream</exception>
</member>
<member name="M:Google.Protobuf.CodedInputStream.SkipGroup(System.UInt32)">
<summary>
Skip a group.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadDouble">
<summary>
Reads a double field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadFloat">
<summary>
Reads a float field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadUInt64">
<summary>
Reads a uint64 field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadInt64">
<summary>
Reads an int64 field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadInt32">
<summary>
Reads an int32 field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadFixed64">
<summary>
Reads a fixed64 field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadFixed32">
<summary>
Reads a fixed32 field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadBool">
<summary>
Reads a bool field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadString">
<summary>
Reads a string field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadMessage(Google.Protobuf.IMessage)">
<summary>
Reads an embedded message field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadGroup(Google.Protobuf.IMessage)">
<summary>
Reads an embedded group field from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadBytes">
<summary>
Reads a bytes field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadUInt32">
<summary>
Reads a uint32 field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadEnum">
<summary>
Reads an enum field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadSFixed32">
<summary>
Reads an sfixed32 field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadSFixed64">
<summary>
Reads an sfixed64 field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadSInt32">
<summary>
Reads an sint32 field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadSInt64">
<summary>
Reads an sint64 field value from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadLength">
<summary>
Reads a length for length-delimited data.
</summary>
<remarks>
This is internally just reading a varint, but this method exists
to make the calling code clearer.
</remarks>
</member>
<member name="M:Google.Protobuf.CodedInputStream.MaybeConsumeTag(System.UInt32)">
<summary>
Peeks at the next tag in the stream. If it matches <paramref name="tag"/>,
the tag is consumed and the method returns <c>true</c>; otherwise, the
stream is left in the original position and the method returns <c>false</c>.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint32">
<summary>
Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits.
This method is optimised for the case where we've got lots of data in the buffer.
That means we can check the size just once, then just read directly from the buffer
without constant rechecking of the buffer length.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint32(System.IO.Stream)">
<summary>
Reads a varint from the input one byte at a time, so that it does not
read any bytes after the end of the varint. If you simply wrapped the
stream in a CodedInputStream and used ReadRawVarint32(Stream)
then you would probably end up reading past the end of the varint since
CodedInputStream buffers its input.
</summary>
<param name="input"></param>
<returns></returns>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint64">
<summary>
Reads a raw varint from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadRawLittleEndian32">
<summary>
Reads a 32-bit little-endian integer from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadRawLittleEndian64">
<summary>
Reads a 64-bit little-endian integer from the stream.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.PushLimit(System.Int32)">
<summary>
Sets currentLimit to (current position) + byteLimit. This is called
when descending into a length-delimited embedded message. The previous
limit is returned.
</summary>
<returns>The old limit.</returns>
</member>
<member name="M:Google.Protobuf.CodedInputStream.PopLimit(System.Int32)">
<summary>
Discards the current limit, returning the previous limit.
</summary>
</member>
<member name="P:Google.Protobuf.CodedInputStream.ReachedLimit">
<summary>
Returns whether or not all the data before the limit has been read.
</summary>
<returns></returns>
</member>
<member name="P:Google.Protobuf.CodedInputStream.IsAtEnd">
<summary>
Returns true if the stream has reached the end of the input. This is the
case if either the end of the underlying input source has been reached or
the stream has reached a limit created using PushLimit.
</summary>
</member>
<member name="M:Google.Protobuf.CodedInputStream.RefillBuffer(System.Boolean)">
<summary>
Called when buffer is empty to read more bytes from the
input. If <paramref name="mustSucceed"/> is true, RefillBuffer() guarantees that
either there will be at least one byte in the buffer when it returns
or it will throw an exception. If <paramref name="mustSucceed"/> is false,
RefillBuffer() returns false if no more bytes were available.
</summary>
<param name="mustSucceed"></param>
<returns></returns>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadRawBytes(System.Int32)">
<summary>
Reads a fixed size of bytes from the input.
</summary>
<exception cref="T:Google.Protobuf.InvalidProtocolBufferException">
the end of the stream or the current limit was reached
</exception>
</member>
<member name="M:Google.Protobuf.CodedInputStream.ReadRawMessage(Google.Protobuf.IMessage)">
<summary>
Reads a top-level message or a nested message after the limits for this message have been pushed.
(parser will proceed until the end of the current limit)
NOTE: this method needs to be public because it's invoked by the generated code - e.g. msg.MergeFrom(CodedInputStream input) method
</summary>
</member>
<member name="T:Google.Protobuf.CodedOutputStream">
<summary>
Encodes and writes protocol message fields.
</summary>
<remarks>
<para>
This class is generally used by generated code to write appropriate
primitives to the stream. It effectively encapsulates the lowest
levels of protocol buffer format. Unlike some other implementations,
this does not include combined "write tag and value" methods. Generated
code knows the exact byte representations of the tags they're going to write,
so there's no need to re-encode them each time. Manually-written code calling
this class should just call one of the <c>WriteTag</c> overloads before each value.
</para>
<para>
Repeated fields and map fields are not handled by this class; use <c>RepeatedField<T></c>
and <c>MapField<TKey, TValue></c> to serialize such fields.
</para>
</remarks>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeDoubleSize(System.Double)">
<summary>
Computes the number of bytes that would be needed to encode a
double field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeFloatSize(System.Single)">
<summary>
Computes the number of bytes that would be needed to encode a
float field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeUInt64Size(System.UInt64)">
<summary>
Computes the number of bytes that would be needed to encode a
uint64 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeInt64Size(System.Int64)">
<summary>
Computes the number of bytes that would be needed to encode an
int64 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeInt32Size(System.Int32)">
<summary>
Computes the number of bytes that would be needed to encode an
int32 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeFixed64Size(System.UInt64)">
<summary>
Computes the number of bytes that would be needed to encode a
fixed64 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeFixed32Size(System.UInt32)">
<summary>
Computes the number of bytes that would be needed to encode a
fixed32 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeBoolSize(System.Boolean)">
<summary>
Computes the number of bytes that would be needed to encode a
bool field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeStringSize(System.String)">
<summary>
Computes the number of bytes that would be needed to encode a
string field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeGroupSize(Google.Protobuf.IMessage)">
<summary>
Computes the number of bytes that would be needed to encode a
group field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeMessageSize(Google.Protobuf.IMessage)">
<summary>
Computes the number of bytes that would be needed to encode an
embedded message field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeBytesSize(Google.Protobuf.ByteString)">
<summary>
Computes the number of bytes that would be needed to encode a
bytes field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeUInt32Size(System.UInt32)">
<summary>
Computes the number of bytes that would be needed to encode a
uint32 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeEnumSize(System.Int32)">
<summary>
Computes the number of bytes that would be needed to encode a
enum field, including the tag. The caller is responsible for
converting the enum value to its numeric value.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeSFixed32Size(System.Int32)">
<summary>
Computes the number of bytes that would be needed to encode an
sfixed32 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeSFixed64Size(System.Int64)">
<summary>
Computes the number of bytes that would be needed to encode an
sfixed64 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeSInt32Size(System.Int32)">
<summary>
Computes the number of bytes that would be needed to encode an
sint32 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeSInt64Size(System.Int64)">
<summary>
Computes the number of bytes that would be needed to encode an
sint64 field, including the tag.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeLengthSize(System.Int32)">
<summary>
Computes the number of bytes that would be needed to encode a length,
as written by <see cref="M:Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)"/>.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeRawVarint32Size(System.UInt32)">
<summary>
Computes the number of bytes that would be needed to encode a varint.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeRawVarint64Size(System.UInt64)">
<summary>
Computes the number of bytes that would be needed to encode a varint.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.ComputeTagSize(System.Int32)">
<summary>
Computes the number of bytes that would be needed to encode a tag.
</summary>
</member>
<member name="F:Google.Protobuf.CodedOutputStream.DefaultBufferSize">
<summary>
The buffer size used by CreateInstance(Stream).
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.Byte[])">
<summary>
Creates a new CodedOutputStream that writes directly to the given
byte array. If more bytes are written than fit in the array,
OutOfSpaceException will be thrown.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
<summary>
Creates a new CodedOutputStream that writes directly to the given
byte array slice. If more bytes are written than fit in the array,
OutOfSpaceException will be thrown.
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream)">
<summary>
Creates a new <see cref="T:Google.Protobuf.CodedOutputStream" /> which write to the given stream, and disposes of that
stream when the returned <c>CodedOutputStream</c> is disposed.
</summary>
<param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32)">
<summary>
Creates a new CodedOutputStream which write to the given stream and uses
the specified buffer size.
</summary>
<param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
<param name="bufferSize">The size of buffer to use internally.</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Creates a new CodedOutputStream which write to the given stream.
</summary>
<param name="output">The stream to write to.</param>
<param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
if <c>false</c>, the provided stream is disposed as well.</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32,System.Boolean)">
<summary>
Creates a new CodedOutputStream which write to the given stream and uses
the specified buffer size.
</summary>
<param name="output">The stream to write to.</param>
<param name="bufferSize">The size of buffer to use internally.</param>
<param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
if <c>false</c>, the provided stream is disposed as well.</param>
</member>
<member name="P:Google.Protobuf.CodedOutputStream.Position">
<summary>
Returns the current position in the stream, or the position in the output buffer
</summary>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteDouble(System.Double)">
<summary>
Writes a double field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteFloat(System.Single)">
<summary>
Writes a float field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteUInt64(System.UInt64)">
<summary>
Writes a uint64 field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteInt64(System.Int64)">
<summary>
Writes an int64 field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteInt32(System.Int32)">
<summary>
Writes an int32 field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteFixed64(System.UInt64)">
<summary>
Writes a fixed64 field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteFixed32(System.UInt32)">
<summary>
Writes a fixed32 field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteBool(System.Boolean)">
<summary>
Writes a bool field value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteString(System.String)">
<summary>
Writes a string field value, without a tag, to the stream.
The data is length-prefixed.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteMessage(Google.Protobuf.IMessage)">
<summary>
Writes a message, without a tag, to the stream.
The data is length-prefixed.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteRawMessage(Google.Protobuf.IMessage)">
<summary>
Writes a message, without a tag, to the stream.
Only the message data is written, without a length-delimiter.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteGroup(Google.Protobuf.IMessage)">
<summary>
Writes a group, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteBytes(Google.Protobuf.ByteString)">
<summary>
Write a byte string, without a tag, to the stream.
The data is length-prefixed.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteUInt32(System.UInt32)">
<summary>
Writes a uint32 value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteEnum(System.Int32)">
<summary>
Writes an enum value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteSFixed32(System.Int32)">
<summary>
Writes an sfixed32 value, without a tag, to the stream.
</summary>
<param name="value">The value to write.</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteSFixed64(System.Int64)">
<summary>
Writes an sfixed64 value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteSInt32(System.Int32)">
<summary>
Writes an sint32 value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteSInt64(System.Int64)">
<summary>
Writes an sint64 value, without a tag, to the stream.
</summary>
<param name="value">The value to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)">
<summary>
Writes a length (in bytes) for length-delimited data.
</summary>
<remarks>
This method simply writes a rawint, but exists for clarity in calling code.
</remarks>
<param name="length">Length value, in bytes.</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteTag(System.Int32,Google.Protobuf.WireFormat.WireType)">
<summary>
Encodes and writes a tag.
</summary>
<param name="fieldNumber">The number of the field to write the tag for</param>
<param name="type">The wire format type of the tag to write</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteTag(System.UInt32)">
<summary>
Writes an already-encoded tag.
</summary>
<param name="tag">The encoded tag</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte)">
<summary>
Writes the given single-byte tag directly to the stream.
</summary>
<param name="b1">The encoded tag</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte)">
<summary>
Writes the given two-byte tag directly to the stream.
</summary>
<param name="b1">The first byte of the encoded tag</param>
<param name="b2">The second byte of the encoded tag</param>
</member>
<member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte)">
<summary>
Writes the given three-byte tag directly to the stream.
</summary>
<param name="b1">The first byte of the encoded tag</param>
<param name="b2">The second byte of the encoded tag</param>
<param name="b3">The third byte of the encoded tag</param>
</member>