革博士程序V1仓库
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

10142 rindas
531 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Google.Protobuf</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Google.Protobuf.ByteArray">
  8. <summary>
  9. Provides a utility routine to copy small arrays much more quickly than Buffer.BlockCopy
  10. </summary>
  11. </member>
  12. <member name="F:Google.Protobuf.ByteArray.CopyThreshold">
  13. <summary>
  14. The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy
  15. </summary>
  16. </member>
  17. <member name="M:Google.Protobuf.ByteArray.Copy(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32)">
  18. <summary>
  19. Determines which copy routine to use based on the number of bytes to be copied.
  20. </summary>
  21. </member>
  22. <member name="M:Google.Protobuf.ByteArray.Reverse(System.Byte[])">
  23. <summary>
  24. Reverses the order of bytes in the array
  25. </summary>
  26. </member>
  27. <member name="T:Google.Protobuf.ByteString">
  28. <summary>
  29. Immutable array of bytes.
  30. </summary>
  31. </member>
  32. <member name="M:Google.Protobuf.ByteString.AttachBytes(System.ReadOnlyMemory{System.Byte})">
  33. <summary>
  34. Internal use only. Ensure that the provided memory is not mutated and belongs to this instance.
  35. </summary>
  36. </member>
  37. <member name="M:Google.Protobuf.ByteString.AttachBytes(System.Byte[])">
  38. <summary>
  39. Internal use only. Ensure that the provided memory is not mutated and belongs to this instance.
  40. This method encapsulates converting array to memory. Reduces need for SecuritySafeCritical
  41. in .NET Framework.
  42. </summary>
  43. </member>
  44. <member name="M:Google.Protobuf.ByteString.#ctor(System.ReadOnlyMemory{System.Byte})">
  45. <summary>
  46. Constructs a new ByteString from the given memory. The memory is
  47. *not* copied, and must not be modified after this constructor is called.
  48. </summary>
  49. </member>
  50. <member name="P:Google.Protobuf.ByteString.Empty">
  51. <summary>
  52. Returns an empty ByteString.
  53. </summary>
  54. </member>
  55. <member name="P:Google.Protobuf.ByteString.Length">
  56. <summary>
  57. Returns the length of this ByteString in bytes.
  58. </summary>
  59. </member>
  60. <member name="P:Google.Protobuf.ByteString.IsEmpty">
  61. <summary>
  62. Returns <c>true</c> if this byte string is empty, <c>false</c> otherwise.
  63. </summary>
  64. </member>
  65. <member name="P:Google.Protobuf.ByteString.Span">
  66. <summary>
  67. Provides read-only access to the data of this <see cref="T:Google.Protobuf.ByteString"/>.
  68. No data is copied so this is the most efficient way of accessing.
  69. </summary>
  70. </member>
  71. <member name="P:Google.Protobuf.ByteString.Memory">
  72. <summary>
  73. Provides read-only access to the data of this <see cref="T:Google.Protobuf.ByteString"/>.
  74. No data is copied so this is the most efficient way of accessing.
  75. </summary>
  76. </member>
  77. <member name="M:Google.Protobuf.ByteString.ToByteArray">
  78. <summary>
  79. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a byte array.
  80. </summary>
  81. <remarks>The data is copied - changes to the returned array will not be reflected in this <c>ByteString</c>.</remarks>
  82. <returns>A byte array with the same data as this <c>ByteString</c>.</returns>
  83. </member>
  84. <member name="M:Google.Protobuf.ByteString.ToBase64">
  85. <summary>
  86. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a standard base64 representation.
  87. </summary>
  88. <returns>A base64 representation of this <c>ByteString</c>.</returns>
  89. </member>
  90. <member name="M:Google.Protobuf.ByteString.FromBase64(System.String)">
  91. <summary>
  92. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from the Base64 Encoded String.
  93. </summary>
  94. </member>
  95. <member name="M:Google.Protobuf.ByteString.FromStream(System.IO.Stream)">
  96. <summary>
  97. Constructs a <see cref="T:Google.Protobuf.ByteString"/> from data in the given stream, synchronously.
  98. </summary>
  99. <remarks>If successful, <paramref name="stream"/> will be read completely, from the position
  100. at the start of the call.</remarks>
  101. <param name="stream">The stream to copy into a ByteString.</param>
  102. <returns>A ByteString with content read from the given stream.</returns>
  103. </member>
  104. <member name="M:Google.Protobuf.ByteString.FromStreamAsync(System.IO.Stream,System.Threading.CancellationToken)">
  105. <summary>
  106. Constructs a <see cref="T:Google.Protobuf.ByteString"/> from data in the given stream, asynchronously.
  107. </summary>
  108. <remarks>If successful, <paramref name="stream"/> will be read completely, from the position
  109. at the start of the call.</remarks>
  110. <param name="stream">The stream to copy into a ByteString.</param>
  111. <param name="cancellationToken">The cancellation token to use when reading from the stream, if any.</param>
  112. <returns>A ByteString with content read from the given stream.</returns>
  113. </member>
  114. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.Byte[])">
  115. <summary>
  116. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from the given array. The contents
  117. are copied, so further modifications to the array will not
  118. be reflected in the returned ByteString.
  119. This method can also be invoked in <c>ByteString.CopyFrom(0xaa, 0xbb, ...)</c> form
  120. which is primarily useful for testing.
  121. </summary>
  122. </member>
  123. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.Byte[],System.Int32,System.Int32)">
  124. <summary>
  125. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from a portion of a byte array.
  126. </summary>
  127. </member>
  128. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.ReadOnlySpan{System.Byte})">
  129. <summary>
  130. Constructs a <see cref="T:Google.Protobuf.ByteString" /> from a read only span. The contents
  131. are copied, so further modifications to the span will not
  132. be reflected in the returned <see cref="T:Google.Protobuf.ByteString" />.
  133. </summary>
  134. </member>
  135. <member name="M:Google.Protobuf.ByteString.CopyFrom(System.String,System.Text.Encoding)">
  136. <summary>
  137. Creates a new <see cref="T:Google.Protobuf.ByteString" /> by encoding the specified text with
  138. the given encoding.
  139. </summary>
  140. </member>
  141. <member name="M:Google.Protobuf.ByteString.CopyFromUtf8(System.String)">
  142. <summary>
  143. Creates a new <see cref="T:Google.Protobuf.ByteString" /> by encoding the specified text in UTF-8.
  144. </summary>
  145. </member>
  146. <member name="P:Google.Protobuf.ByteString.Item(System.Int32)">
  147. <summary>
  148. Returns the byte at the given index.
  149. </summary>
  150. </member>
  151. <member name="M:Google.Protobuf.ByteString.ToString(System.Text.Encoding)">
  152. <summary>
  153. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a string by applying the given encoding.
  154. </summary>
  155. <remarks>
  156. This method should only be used to convert binary data which was the result of encoding
  157. text with the given encoding.
  158. </remarks>
  159. <param name="encoding">The encoding to use to decode the binary data into text.</param>
  160. <returns>The result of decoding the binary data with the given decoding.</returns>
  161. </member>
  162. <member name="M:Google.Protobuf.ByteString.ToStringUtf8">
  163. <summary>
  164. Converts this <see cref="T:Google.Protobuf.ByteString"/> into a string by applying the UTF-8 encoding.
  165. </summary>
  166. <remarks>
  167. This method should only be used to convert binary data which was the result of encoding
  168. text with UTF-8.
  169. </remarks>
  170. <returns>The result of decoding the binary data with the given decoding.</returns>
  171. </member>
  172. <member name="M:Google.Protobuf.ByteString.GetEnumerator">
  173. <summary>
  174. Returns an iterator over the bytes in this <see cref="T:Google.Protobuf.ByteString"/>.
  175. </summary>
  176. <returns>An iterator over the bytes in this object.</returns>
  177. </member>
  178. <member name="M:Google.Protobuf.ByteString.System#Collections#IEnumerable#GetEnumerator">
  179. <summary>
  180. Returns an iterator over the bytes in this <see cref="T:Google.Protobuf.ByteString"/>.
  181. </summary>
  182. <returns>An iterator over the bytes in this object.</returns>
  183. </member>
  184. <member name="M:Google.Protobuf.ByteString.CreateCodedInput">
  185. <summary>
  186. Creates a CodedInputStream from this ByteString's data.
  187. </summary>
  188. </member>
  189. <member name="M:Google.Protobuf.ByteString.op_Equality(Google.Protobuf.ByteString,Google.Protobuf.ByteString)">
  190. <summary>
  191. Compares two byte strings for equality.
  192. </summary>
  193. <param name="lhs">The first byte string to compare.</param>
  194. <param name="rhs">The second byte string to compare.</param>
  195. <returns><c>true</c> if the byte strings are equal; false otherwise.</returns>
  196. </member>
  197. <member name="M:Google.Protobuf.ByteString.op_Inequality(Google.Protobuf.ByteString,Google.Protobuf.ByteString)">
  198. <summary>
  199. Compares two byte strings for inequality.
  200. </summary>
  201. <param name="lhs">The first byte string to compare.</param>
  202. <param name="rhs">The second byte string to compare.</param>
  203. <returns><c>false</c> if the byte strings are equal; true otherwise.</returns>
  204. </member>
  205. <member name="M:Google.Protobuf.ByteString.Equals(System.Object)">
  206. <summary>
  207. Compares this byte string with another object.
  208. </summary>
  209. <param name="obj">The object to compare this with.</param>
  210. <returns><c>true</c> if <paramref name="obj"/> refers to an equal <see cref="T:Google.Protobuf.ByteString"/>; <c>false</c> otherwise.</returns>
  211. </member>
  212. <member name="M:Google.Protobuf.ByteString.GetHashCode">
  213. <summary>
  214. Returns a hash code for this object. Two equal byte strings
  215. will return the same hash code.
  216. </summary>
  217. <returns>A hash code for this object.</returns>
  218. </member>
  219. <member name="M:Google.Protobuf.ByteString.Equals(Google.Protobuf.ByteString)">
  220. <summary>
  221. Compares this byte string with another.
  222. </summary>
  223. <param name="other">The <see cref="T:Google.Protobuf.ByteString"/> to compare this with.</param>
  224. <returns><c>true</c> if <paramref name="other"/> refers to an equal byte string; <c>false</c> otherwise.</returns>
  225. </member>
  226. <member name="M:Google.Protobuf.ByteString.CopyTo(System.Byte[],System.Int32)">
  227. <summary>
  228. Copies the entire byte array to the destination array provided at the offset specified.
  229. </summary>
  230. </member>
  231. <member name="M:Google.Protobuf.ByteString.WriteTo(System.IO.Stream)">
  232. <summary>
  233. Writes the entire byte array to the provided stream
  234. </summary>
  235. </member>
  236. <member name="T:Google.Protobuf.ByteStringAsync">
  237. <summary>
  238. SecuritySafeCritical attribute can not be placed on types with async methods.
  239. This class has ByteString's async methods so it can be marked with SecuritySafeCritical.
  240. </summary>
  241. </member>
  242. <member name="T:Google.Protobuf.CodedInputStream">
  243. <summary>
  244. Reads and decodes protocol message fields.
  245. </summary>
  246. <remarks>
  247. <para>
  248. This class is generally used by generated code to read appropriate
  249. primitives from the stream. It effectively encapsulates the lowest
  250. levels of protocol buffer format.
  251. </para>
  252. <para>
  253. Repeated fields and map fields are not handled by this class; use <see cref="T:Google.Protobuf.Collections.RepeatedField`1"/>
  254. and <see cref="T:Google.Protobuf.Collections.MapField`2"/> to serialize such fields.
  255. </para>
  256. </remarks>
  257. </member>
  258. <member name="F:Google.Protobuf.CodedInputStream.leaveOpen">
  259. <summary>
  260. Whether to leave the underlying stream open when disposing of this stream.
  261. This is always true when there's no stream.
  262. </summary>
  263. </member>
  264. <member name="F:Google.Protobuf.CodedInputStream.buffer">
  265. <summary>
  266. Buffer of data read from the stream or provided at construction time.
  267. </summary>
  268. </member>
  269. <member name="F:Google.Protobuf.CodedInputStream.input">
  270. <summary>
  271. The stream to read further input from, or null if the byte array buffer was provided
  272. directly on construction, with no further data available.
  273. </summary>
  274. </member>
  275. <member name="F:Google.Protobuf.CodedInputStream.state">
  276. <summary>
  277. The parser state is kept separately so that other parse implementations can reuse the same
  278. parsing primitives.
  279. </summary>
  280. </member>
  281. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.Byte[])">
  282. <summary>
  283. Creates a new CodedInputStream reading data from the given byte array.
  284. </summary>
  285. </member>
  286. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
  287. <summary>
  288. Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> that reads from the given byte array slice.
  289. </summary>
  290. </member>
  291. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream)">
  292. <summary>
  293. Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> reading data from the given stream, which will be disposed
  294. when the returned object is disposed.
  295. </summary>
  296. <param name="input">The stream to read from.</param>
  297. </member>
  298. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Boolean)">
  299. <summary>
  300. Creates a new <see cref="T:Google.Protobuf.CodedInputStream"/> reading data from the given stream.
  301. </summary>
  302. <param name="input">The stream to read from.</param>
  303. <param name="leaveOpen"><c>true</c> to leave <paramref name="input"/> open when the returned
  304. <c cref="T:Google.Protobuf.CodedInputStream"/> is disposed; <c>false</c> to dispose of the given stream when the
  305. returned object is disposed.</param>
  306. </member>
  307. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Boolean)">
  308. <summary>
  309. Creates a new CodedInputStream reading data from the given
  310. stream and buffer, using the default limits.
  311. </summary>
  312. </member>
  313. <member name="M:Google.Protobuf.CodedInputStream.#ctor(System.IO.Stream,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  314. <summary>
  315. Creates a new CodedInputStream reading data from the given
  316. stream and buffer, using the specified limits.
  317. </summary>
  318. <remarks>
  319. This chains to the version with the default limits instead of vice versa to avoid
  320. having to check that the default values are valid every time.
  321. </remarks>
  322. </member>
  323. <member name="M:Google.Protobuf.CodedInputStream.CreateWithLimits(System.IO.Stream,System.Int32,System.Int32)">
  324. <summary>
  325. Creates a <see cref="T:Google.Protobuf.CodedInputStream"/> with the specified size and recursion limits, reading
  326. from an input stream.
  327. </summary>
  328. <remarks>
  329. This method exists separately from the constructor to reduce the number of constructor overloads.
  330. It is likely to be used considerably less frequently than the constructors, as the default limits
  331. are suitable for most use cases.
  332. </remarks>
  333. <param name="input">The input stream to read from</param>
  334. <param name="sizeLimit">The total limit of data to read from the stream.</param>
  335. <param name="recursionLimit">The maximum recursion depth to allow while reading.</param>
  336. <returns>A <c>CodedInputStream</c> reading from <paramref name="input"/> with the specified size
  337. and recursion limits.</returns>
  338. </member>
  339. <member name="P:Google.Protobuf.CodedInputStream.Position">
  340. <summary>
  341. Returns the current position in the input stream, or the position in the input buffer
  342. </summary>
  343. </member>
  344. <member name="P:Google.Protobuf.CodedInputStream.LastTag">
  345. <summary>
  346. Returns the last tag read, or 0 if no tags have been read or we've read beyond
  347. the end of the stream.
  348. </summary>
  349. </member>
  350. <member name="P:Google.Protobuf.CodedInputStream.SizeLimit">
  351. <summary>
  352. Returns the size limit for this stream.
  353. </summary>
  354. <remarks>
  355. This limit is applied when reading from the underlying stream, as a sanity check. It is
  356. not applied when reading from a byte array data source without an underlying stream.
  357. The default value is Int32.MaxValue.
  358. </remarks>
  359. <value>
  360. The size limit.
  361. </value>
  362. </member>
  363. <member name="P:Google.Protobuf.CodedInputStream.RecursionLimit">
  364. <summary>
  365. Returns the recursion limit for this stream. This limit is applied whilst reading messages,
  366. to avoid maliciously-recursive data.
  367. </summary>
  368. <remarks>
  369. The default limit is 100.
  370. </remarks>
  371. <value>
  372. The recursion limit for this stream.
  373. </value>
  374. </member>
  375. <member name="P:Google.Protobuf.CodedInputStream.DiscardUnknownFields">
  376. <summary>
  377. Internal-only property; when set to true, unknown fields will be discarded while parsing.
  378. </summary>
  379. </member>
  380. <member name="P:Google.Protobuf.CodedInputStream.ExtensionRegistry">
  381. <summary>
  382. Internal-only property; provides extension identifiers to compatible messages while parsing.
  383. </summary>
  384. </member>
  385. <member name="M:Google.Protobuf.CodedInputStream.Dispose">
  386. <summary>
  387. Disposes of this instance, potentially closing any underlying stream.
  388. </summary>
  389. <remarks>
  390. As there is no flushing to perform here, disposing of a <see cref="T:Google.Protobuf.CodedInputStream"/> which
  391. was constructed with the <c>leaveOpen</c> option parameter set to <c>true</c> (or one which
  392. was constructed to read from a byte array) has no effect.
  393. </remarks>
  394. </member>
  395. <member name="M:Google.Protobuf.CodedInputStream.CheckReadEndOfStreamTag">
  396. <summary>
  397. Verifies that the last call to ReadTag() returned tag 0 - in other words,
  398. we've reached the end of the stream when we expected to.
  399. </summary>
  400. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The
  401. tag read was not the one specified</exception>
  402. </member>
  403. <member name="M:Google.Protobuf.CodedInputStream.PeekTag">
  404. <summary>
  405. Peeks at the next field tag. This is like calling <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/>, but the
  406. tag is not consumed. (So a subsequent call to <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/> will return the
  407. same value.)
  408. </summary>
  409. </member>
  410. <member name="M:Google.Protobuf.CodedInputStream.ReadTag">
  411. <summary>
  412. Reads a field tag, returning the tag of 0 for "end of stream".
  413. </summary>
  414. <remarks>
  415. If this method returns 0, it doesn't necessarily mean the end of all
  416. the data in this CodedInputStream; it may be the end of the logical stream
  417. for an embedded message, for example.
  418. </remarks>
  419. <returns>The next field tag, or 0 for end of stream. (0 is never a valid tag.)</returns>
  420. </member>
  421. <member name="M:Google.Protobuf.CodedInputStream.SkipLastField">
  422. <summary>
  423. Skips the data for the field with the tag we've just read.
  424. This should be called directly after <see cref="M:Google.Protobuf.CodedInputStream.ReadTag"/>, when
  425. the caller wishes to skip an unknown field.
  426. </summary>
  427. <remarks>
  428. This method throws <see cref="T:Google.Protobuf.InvalidProtocolBufferException"/> if the last-read tag was an end-group tag.
  429. If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the
  430. start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly
  431. resulting in an error if an end-group tag has not been paired with an earlier start-group tag.
  432. </remarks>
  433. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The last tag was an end-group tag</exception>
  434. <exception cref="T:System.InvalidOperationException">The last read operation read to the end of the logical stream</exception>
  435. </member>
  436. <member name="M:Google.Protobuf.CodedInputStream.SkipGroup(System.UInt32)">
  437. <summary>
  438. Skip a group.
  439. </summary>
  440. </member>
  441. <member name="M:Google.Protobuf.CodedInputStream.ReadDouble">
  442. <summary>
  443. Reads a double field from the stream.
  444. </summary>
  445. </member>
  446. <member name="M:Google.Protobuf.CodedInputStream.ReadFloat">
  447. <summary>
  448. Reads a float field from the stream.
  449. </summary>
  450. </member>
  451. <member name="M:Google.Protobuf.CodedInputStream.ReadUInt64">
  452. <summary>
  453. Reads a uint64 field from the stream.
  454. </summary>
  455. </member>
  456. <member name="M:Google.Protobuf.CodedInputStream.ReadInt64">
  457. <summary>
  458. Reads an int64 field from the stream.
  459. </summary>
  460. </member>
  461. <member name="M:Google.Protobuf.CodedInputStream.ReadInt32">
  462. <summary>
  463. Reads an int32 field from the stream.
  464. </summary>
  465. </member>
  466. <member name="M:Google.Protobuf.CodedInputStream.ReadFixed64">
  467. <summary>
  468. Reads a fixed64 field from the stream.
  469. </summary>
  470. </member>
  471. <member name="M:Google.Protobuf.CodedInputStream.ReadFixed32">
  472. <summary>
  473. Reads a fixed32 field from the stream.
  474. </summary>
  475. </member>
  476. <member name="M:Google.Protobuf.CodedInputStream.ReadBool">
  477. <summary>
  478. Reads a bool field from the stream.
  479. </summary>
  480. </member>
  481. <member name="M:Google.Protobuf.CodedInputStream.ReadString">
  482. <summary>
  483. Reads a string field from the stream.
  484. </summary>
  485. </member>
  486. <member name="M:Google.Protobuf.CodedInputStream.ReadMessage(Google.Protobuf.IMessage)">
  487. <summary>
  488. Reads an embedded message field value from the stream.
  489. </summary>
  490. </member>
  491. <member name="M:Google.Protobuf.CodedInputStream.ReadGroup(Google.Protobuf.IMessage)">
  492. <summary>
  493. Reads an embedded group field from the stream.
  494. </summary>
  495. </member>
  496. <member name="M:Google.Protobuf.CodedInputStream.ReadBytes">
  497. <summary>
  498. Reads a bytes field value from the stream.
  499. </summary>
  500. </member>
  501. <member name="M:Google.Protobuf.CodedInputStream.ReadUInt32">
  502. <summary>
  503. Reads a uint32 field value from the stream.
  504. </summary>
  505. </member>
  506. <member name="M:Google.Protobuf.CodedInputStream.ReadEnum">
  507. <summary>
  508. Reads an enum field value from the stream.
  509. </summary>
  510. </member>
  511. <member name="M:Google.Protobuf.CodedInputStream.ReadSFixed32">
  512. <summary>
  513. Reads an sfixed32 field value from the stream.
  514. </summary>
  515. </member>
  516. <member name="M:Google.Protobuf.CodedInputStream.ReadSFixed64">
  517. <summary>
  518. Reads an sfixed64 field value from the stream.
  519. </summary>
  520. </member>
  521. <member name="M:Google.Protobuf.CodedInputStream.ReadSInt32">
  522. <summary>
  523. Reads an sint32 field value from the stream.
  524. </summary>
  525. </member>
  526. <member name="M:Google.Protobuf.CodedInputStream.ReadSInt64">
  527. <summary>
  528. Reads an sint64 field value from the stream.
  529. </summary>
  530. </member>
  531. <member name="M:Google.Protobuf.CodedInputStream.ReadLength">
  532. <summary>
  533. Reads a length for length-delimited data.
  534. </summary>
  535. <remarks>
  536. This is internally just reading a varint, but this method exists
  537. to make the calling code clearer.
  538. </remarks>
  539. </member>
  540. <member name="M:Google.Protobuf.CodedInputStream.MaybeConsumeTag(System.UInt32)">
  541. <summary>
  542. Peeks at the next tag in the stream. If it matches <paramref name="tag"/>,
  543. the tag is consumed and the method returns <c>true</c>; otherwise, the
  544. stream is left in the original position and the method returns <c>false</c>.
  545. </summary>
  546. </member>
  547. <member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint32">
  548. <summary>
  549. Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits.
  550. This method is optimised for the case where we've got lots of data in the buffer.
  551. That means we can check the size just once, then just read directly from the buffer
  552. without constant rechecking of the buffer length.
  553. </summary>
  554. </member>
  555. <member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint32(System.IO.Stream)">
  556. <summary>
  557. Reads a varint from the input one byte at a time, so that it does not
  558. read any bytes after the end of the varint. If you simply wrapped the
  559. stream in a CodedInputStream and used ReadRawVarint32(Stream)
  560. then you would probably end up reading past the end of the varint since
  561. CodedInputStream buffers its input.
  562. </summary>
  563. <param name="input"></param>
  564. <returns></returns>
  565. </member>
  566. <member name="M:Google.Protobuf.CodedInputStream.ReadRawVarint64">
  567. <summary>
  568. Reads a raw varint from the stream.
  569. </summary>
  570. </member>
  571. <member name="M:Google.Protobuf.CodedInputStream.ReadRawLittleEndian32">
  572. <summary>
  573. Reads a 32-bit little-endian integer from the stream.
  574. </summary>
  575. </member>
  576. <member name="M:Google.Protobuf.CodedInputStream.ReadRawLittleEndian64">
  577. <summary>
  578. Reads a 64-bit little-endian integer from the stream.
  579. </summary>
  580. </member>
  581. <member name="M:Google.Protobuf.CodedInputStream.PushLimit(System.Int32)">
  582. <summary>
  583. Sets currentLimit to (current position) + byteLimit. This is called
  584. when descending into a length-delimited embedded message. The previous
  585. limit is returned.
  586. </summary>
  587. <returns>The old limit.</returns>
  588. </member>
  589. <member name="M:Google.Protobuf.CodedInputStream.PopLimit(System.Int32)">
  590. <summary>
  591. Discards the current limit, returning the previous limit.
  592. </summary>
  593. </member>
  594. <member name="P:Google.Protobuf.CodedInputStream.ReachedLimit">
  595. <summary>
  596. Returns whether or not all the data before the limit has been read.
  597. </summary>
  598. <returns></returns>
  599. </member>
  600. <member name="P:Google.Protobuf.CodedInputStream.IsAtEnd">
  601. <summary>
  602. Returns true if the stream has reached the end of the input. This is the
  603. case if either the end of the underlying input source has been reached or
  604. the stream has reached a limit created using PushLimit.
  605. </summary>
  606. </member>
  607. <member name="M:Google.Protobuf.CodedInputStream.RefillBuffer(System.Boolean)">
  608. <summary>
  609. Called when buffer is empty to read more bytes from the
  610. input. If <paramref name="mustSucceed"/> is true, RefillBuffer() guarantees that
  611. either there will be at least one byte in the buffer when it returns
  612. or it will throw an exception. If <paramref name="mustSucceed"/> is false,
  613. RefillBuffer() returns false if no more bytes were available.
  614. </summary>
  615. <param name="mustSucceed"></param>
  616. <returns></returns>
  617. </member>
  618. <member name="M:Google.Protobuf.CodedInputStream.ReadRawBytes(System.Int32)">
  619. <summary>
  620. Reads a fixed size of bytes from the input.
  621. </summary>
  622. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">
  623. the end of the stream or the current limit was reached
  624. </exception>
  625. </member>
  626. <member name="M:Google.Protobuf.CodedInputStream.ReadRawMessage(Google.Protobuf.IMessage)">
  627. <summary>
  628. Reads a top-level message or a nested message after the limits for this message have been pushed.
  629. (parser will proceed until the end of the current limit)
  630. NOTE: this method needs to be public because it's invoked by the generated code - e.g. msg.MergeFrom(CodedInputStream input) method
  631. </summary>
  632. </member>
  633. <member name="T:Google.Protobuf.CodedOutputStream">
  634. <summary>
  635. Encodes and writes protocol message fields.
  636. </summary>
  637. <remarks>
  638. <para>
  639. This class is generally used by generated code to write appropriate
  640. primitives to the stream. It effectively encapsulates the lowest
  641. levels of protocol buffer format. Unlike some other implementations,
  642. this does not include combined "write tag and value" methods. Generated
  643. code knows the exact byte representations of the tags they're going to write,
  644. so there's no need to re-encode them each time. Manually-written code calling
  645. this class should just call one of the <c>WriteTag</c> overloads before each value.
  646. </para>
  647. <para>
  648. Repeated fields and map fields are not handled by this class; use <c>RepeatedField&lt;T&gt;</c>
  649. and <c>MapField&lt;TKey, TValue&gt;</c> to serialize such fields.
  650. </para>
  651. </remarks>
  652. </member>
  653. <member name="M:Google.Protobuf.CodedOutputStream.ComputeDoubleSize(System.Double)">
  654. <summary>
  655. Computes the number of bytes that would be needed to encode a
  656. double field, including the tag.
  657. </summary>
  658. </member>
  659. <member name="M:Google.Protobuf.CodedOutputStream.ComputeFloatSize(System.Single)">
  660. <summary>
  661. Computes the number of bytes that would be needed to encode a
  662. float field, including the tag.
  663. </summary>
  664. </member>
  665. <member name="M:Google.Protobuf.CodedOutputStream.ComputeUInt64Size(System.UInt64)">
  666. <summary>
  667. Computes the number of bytes that would be needed to encode a
  668. uint64 field, including the tag.
  669. </summary>
  670. </member>
  671. <member name="M:Google.Protobuf.CodedOutputStream.ComputeInt64Size(System.Int64)">
  672. <summary>
  673. Computes the number of bytes that would be needed to encode an
  674. int64 field, including the tag.
  675. </summary>
  676. </member>
  677. <member name="M:Google.Protobuf.CodedOutputStream.ComputeInt32Size(System.Int32)">
  678. <summary>
  679. Computes the number of bytes that would be needed to encode an
  680. int32 field, including the tag.
  681. </summary>
  682. </member>
  683. <member name="M:Google.Protobuf.CodedOutputStream.ComputeFixed64Size(System.UInt64)">
  684. <summary>
  685. Computes the number of bytes that would be needed to encode a
  686. fixed64 field, including the tag.
  687. </summary>
  688. </member>
  689. <member name="M:Google.Protobuf.CodedOutputStream.ComputeFixed32Size(System.UInt32)">
  690. <summary>
  691. Computes the number of bytes that would be needed to encode a
  692. fixed32 field, including the tag.
  693. </summary>
  694. </member>
  695. <member name="M:Google.Protobuf.CodedOutputStream.ComputeBoolSize(System.Boolean)">
  696. <summary>
  697. Computes the number of bytes that would be needed to encode a
  698. bool field, including the tag.
  699. </summary>
  700. </member>
  701. <member name="M:Google.Protobuf.CodedOutputStream.ComputeStringSize(System.String)">
  702. <summary>
  703. Computes the number of bytes that would be needed to encode a
  704. string field, including the tag.
  705. </summary>
  706. </member>
  707. <member name="M:Google.Protobuf.CodedOutputStream.ComputeGroupSize(Google.Protobuf.IMessage)">
  708. <summary>
  709. Computes the number of bytes that would be needed to encode a
  710. group field, including the tag.
  711. </summary>
  712. </member>
  713. <member name="M:Google.Protobuf.CodedOutputStream.ComputeMessageSize(Google.Protobuf.IMessage)">
  714. <summary>
  715. Computes the number of bytes that would be needed to encode an
  716. embedded message field, including the tag.
  717. </summary>
  718. </member>
  719. <member name="M:Google.Protobuf.CodedOutputStream.ComputeBytesSize(Google.Protobuf.ByteString)">
  720. <summary>
  721. Computes the number of bytes that would be needed to encode a
  722. bytes field, including the tag.
  723. </summary>
  724. </member>
  725. <member name="M:Google.Protobuf.CodedOutputStream.ComputeUInt32Size(System.UInt32)">
  726. <summary>
  727. Computes the number of bytes that would be needed to encode a
  728. uint32 field, including the tag.
  729. </summary>
  730. </member>
  731. <member name="M:Google.Protobuf.CodedOutputStream.ComputeEnumSize(System.Int32)">
  732. <summary>
  733. Computes the number of bytes that would be needed to encode a
  734. enum field, including the tag. The caller is responsible for
  735. converting the enum value to its numeric value.
  736. </summary>
  737. </member>
  738. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSFixed32Size(System.Int32)">
  739. <summary>
  740. Computes the number of bytes that would be needed to encode an
  741. sfixed32 field, including the tag.
  742. </summary>
  743. </member>
  744. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSFixed64Size(System.Int64)">
  745. <summary>
  746. Computes the number of bytes that would be needed to encode an
  747. sfixed64 field, including the tag.
  748. </summary>
  749. </member>
  750. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSInt32Size(System.Int32)">
  751. <summary>
  752. Computes the number of bytes that would be needed to encode an
  753. sint32 field, including the tag.
  754. </summary>
  755. </member>
  756. <member name="M:Google.Protobuf.CodedOutputStream.ComputeSInt64Size(System.Int64)">
  757. <summary>
  758. Computes the number of bytes that would be needed to encode an
  759. sint64 field, including the tag.
  760. </summary>
  761. </member>
  762. <member name="M:Google.Protobuf.CodedOutputStream.ComputeLengthSize(System.Int32)">
  763. <summary>
  764. Computes the number of bytes that would be needed to encode a length,
  765. as written by <see cref="M:Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)"/>.
  766. </summary>
  767. </member>
  768. <member name="M:Google.Protobuf.CodedOutputStream.ComputeRawVarint32Size(System.UInt32)">
  769. <summary>
  770. Computes the number of bytes that would be needed to encode a varint.
  771. </summary>
  772. </member>
  773. <member name="M:Google.Protobuf.CodedOutputStream.ComputeRawVarint64Size(System.UInt64)">
  774. <summary>
  775. Computes the number of bytes that would be needed to encode a varint.
  776. </summary>
  777. </member>
  778. <member name="M:Google.Protobuf.CodedOutputStream.ComputeTagSize(System.Int32)">
  779. <summary>
  780. Computes the number of bytes that would be needed to encode a tag.
  781. </summary>
  782. </member>
  783. <member name="F:Google.Protobuf.CodedOutputStream.DefaultBufferSize">
  784. <summary>
  785. The buffer size used by CreateInstance(Stream).
  786. </summary>
  787. </member>
  788. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.Byte[])">
  789. <summary>
  790. Creates a new CodedOutputStream that writes directly to the given
  791. byte array. If more bytes are written than fit in the array,
  792. OutOfSpaceException will be thrown.
  793. </summary>
  794. </member>
  795. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.Byte[],System.Int32,System.Int32)">
  796. <summary>
  797. Creates a new CodedOutputStream that writes directly to the given
  798. byte array slice. If more bytes are written than fit in the array,
  799. OutOfSpaceException will be thrown.
  800. </summary>
  801. </member>
  802. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream)">
  803. <summary>
  804. Creates a new <see cref="T:Google.Protobuf.CodedOutputStream" /> which write to the given stream, and disposes of that
  805. stream when the returned <c>CodedOutputStream</c> is disposed.
  806. </summary>
  807. <param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
  808. </member>
  809. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32)">
  810. <summary>
  811. Creates a new CodedOutputStream which write to the given stream and uses
  812. the specified buffer size.
  813. </summary>
  814. <param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
  815. <param name="bufferSize">The size of buffer to use internally.</param>
  816. </member>
  817. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Boolean)">
  818. <summary>
  819. Creates a new CodedOutputStream which write to the given stream.
  820. </summary>
  821. <param name="output">The stream to write to.</param>
  822. <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
  823. if <c>false</c>, the provided stream is disposed as well.</param>
  824. </member>
  825. <member name="M:Google.Protobuf.CodedOutputStream.#ctor(System.IO.Stream,System.Int32,System.Boolean)">
  826. <summary>
  827. Creates a new CodedOutputStream which write to the given stream and uses
  828. the specified buffer size.
  829. </summary>
  830. <param name="output">The stream to write to.</param>
  831. <param name="bufferSize">The size of buffer to use internally.</param>
  832. <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
  833. if <c>false</c>, the provided stream is disposed as well.</param>
  834. </member>
  835. <member name="P:Google.Protobuf.CodedOutputStream.Position">
  836. <summary>
  837. Returns the current position in the stream, or the position in the output buffer
  838. </summary>
  839. </member>
  840. <member name="M:Google.Protobuf.CodedOutputStream.WriteDouble(System.Double)">
  841. <summary>
  842. Writes a double field value, without a tag, to the stream.
  843. </summary>
  844. <param name="value">The value to write</param>
  845. </member>
  846. <member name="M:Google.Protobuf.CodedOutputStream.WriteFloat(System.Single)">
  847. <summary>
  848. Writes a float field value, without a tag, to the stream.
  849. </summary>
  850. <param name="value">The value to write</param>
  851. </member>
  852. <member name="M:Google.Protobuf.CodedOutputStream.WriteUInt64(System.UInt64)">
  853. <summary>
  854. Writes a uint64 field value, without a tag, to the stream.
  855. </summary>
  856. <param name="value">The value to write</param>
  857. </member>
  858. <member name="M:Google.Protobuf.CodedOutputStream.WriteInt64(System.Int64)">
  859. <summary>
  860. Writes an int64 field value, without a tag, to the stream.
  861. </summary>
  862. <param name="value">The value to write</param>
  863. </member>
  864. <member name="M:Google.Protobuf.CodedOutputStream.WriteInt32(System.Int32)">
  865. <summary>
  866. Writes an int32 field value, without a tag, to the stream.
  867. </summary>
  868. <param name="value">The value to write</param>
  869. </member>
  870. <member name="M:Google.Protobuf.CodedOutputStream.WriteFixed64(System.UInt64)">
  871. <summary>
  872. Writes a fixed64 field value, without a tag, to the stream.
  873. </summary>
  874. <param name="value">The value to write</param>
  875. </member>
  876. <member name="M:Google.Protobuf.CodedOutputStream.WriteFixed32(System.UInt32)">
  877. <summary>
  878. Writes a fixed32 field value, without a tag, to the stream.
  879. </summary>
  880. <param name="value">The value to write</param>
  881. </member>
  882. <member name="M:Google.Protobuf.CodedOutputStream.WriteBool(System.Boolean)">
  883. <summary>
  884. Writes a bool field value, without a tag, to the stream.
  885. </summary>
  886. <param name="value">The value to write</param>
  887. </member>
  888. <member name="M:Google.Protobuf.CodedOutputStream.WriteString(System.String)">
  889. <summary>
  890. Writes a string field value, without a tag, to the stream.
  891. The data is length-prefixed.
  892. </summary>
  893. <param name="value">The value to write</param>
  894. </member>
  895. <member name="M:Google.Protobuf.CodedOutputStream.WriteMessage(Google.Protobuf.IMessage)">
  896. <summary>
  897. Writes a message, without a tag, to the stream.
  898. The data is length-prefixed.
  899. </summary>
  900. <param name="value">The value to write</param>
  901. </member>
  902. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawMessage(Google.Protobuf.IMessage)">
  903. <summary>
  904. Writes a message, without a tag, to the stream.
  905. Only the message data is written, without a length-delimiter.
  906. </summary>
  907. <param name="value">The value to write</param>
  908. </member>
  909. <member name="M:Google.Protobuf.CodedOutputStream.WriteGroup(Google.Protobuf.IMessage)">
  910. <summary>
  911. Writes a group, without a tag, to the stream.
  912. </summary>
  913. <param name="value">The value to write</param>
  914. </member>
  915. <member name="M:Google.Protobuf.CodedOutputStream.WriteBytes(Google.Protobuf.ByteString)">
  916. <summary>
  917. Write a byte string, without a tag, to the stream.
  918. The data is length-prefixed.
  919. </summary>
  920. <param name="value">The value to write</param>
  921. </member>
  922. <member name="M:Google.Protobuf.CodedOutputStream.WriteUInt32(System.UInt32)">
  923. <summary>
  924. Writes a uint32 value, without a tag, to the stream.
  925. </summary>
  926. <param name="value">The value to write</param>
  927. </member>
  928. <member name="M:Google.Protobuf.CodedOutputStream.WriteEnum(System.Int32)">
  929. <summary>
  930. Writes an enum value, without a tag, to the stream.
  931. </summary>
  932. <param name="value">The value to write</param>
  933. </member>
  934. <member name="M:Google.Protobuf.CodedOutputStream.WriteSFixed32(System.Int32)">
  935. <summary>
  936. Writes an sfixed32 value, without a tag, to the stream.
  937. </summary>
  938. <param name="value">The value to write.</param>
  939. </member>
  940. <member name="M:Google.Protobuf.CodedOutputStream.WriteSFixed64(System.Int64)">
  941. <summary>
  942. Writes an sfixed64 value, without a tag, to the stream.
  943. </summary>
  944. <param name="value">The value to write</param>
  945. </member>
  946. <member name="M:Google.Protobuf.CodedOutputStream.WriteSInt32(System.Int32)">
  947. <summary>
  948. Writes an sint32 value, without a tag, to the stream.
  949. </summary>
  950. <param name="value">The value to write</param>
  951. </member>
  952. <member name="M:Google.Protobuf.CodedOutputStream.WriteSInt64(System.Int64)">
  953. <summary>
  954. Writes an sint64 value, without a tag, to the stream.
  955. </summary>
  956. <param name="value">The value to write</param>
  957. </member>
  958. <member name="M:Google.Protobuf.CodedOutputStream.WriteLength(System.Int32)">
  959. <summary>
  960. Writes a length (in bytes) for length-delimited data.
  961. </summary>
  962. <remarks>
  963. This method simply writes a rawint, but exists for clarity in calling code.
  964. </remarks>
  965. <param name="length">Length value, in bytes.</param>
  966. </member>
  967. <member name="M:Google.Protobuf.CodedOutputStream.WriteTag(System.Int32,Google.Protobuf.WireFormat.WireType)">
  968. <summary>
  969. Encodes and writes a tag.
  970. </summary>
  971. <param name="fieldNumber">The number of the field to write the tag for</param>
  972. <param name="type">The wire format type of the tag to write</param>
  973. </member>
  974. <member name="M:Google.Protobuf.CodedOutputStream.WriteTag(System.UInt32)">
  975. <summary>
  976. Writes an already-encoded tag.
  977. </summary>
  978. <param name="tag">The encoded tag</param>
  979. </member>
  980. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte)">
  981. <summary>
  982. Writes the given single-byte tag directly to the stream.
  983. </summary>
  984. <param name="b1">The encoded tag</param>
  985. </member>
  986. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte)">
  987. <summary>
  988. Writes the given two-byte tag directly to the stream.
  989. </summary>
  990. <param name="b1">The first byte of the encoded tag</param>
  991. <param name="b2">The second byte of the encoded tag</param>
  992. </member>
  993. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte)">
  994. <summary>
  995. Writes the given three-byte tag directly to the stream.
  996. </summary>
  997. <param name="b1">The first byte of the encoded tag</param>
  998. <param name="b2">The second byte of the encoded tag</param>
  999. <param name="b3">The third byte of the encoded tag</param>
  1000. </member>
  1001. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte)">
  1002. <summary>
  1003. Writes the given four-byte tag directly to the stream.
  1004. </summary>
  1005. <param name="b1">The first byte of the encoded tag</param>
  1006. <param name="b2">The second byte of the encoded tag</param>
  1007. <param name="b3">The third byte of the encoded tag</param>
  1008. <param name="b4">The fourth byte of the encoded tag</param>
  1009. </member>
  1010. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
  1011. <summary>
  1012. Writes the given five-byte tag directly to the stream.
  1013. </summary>
  1014. <param name="b1">The first byte of the encoded tag</param>
  1015. <param name="b2">The second byte of the encoded tag</param>
  1016. <param name="b3">The third byte of the encoded tag</param>
  1017. <param name="b4">The fourth byte of the encoded tag</param>
  1018. <param name="b5">The fifth byte of the encoded tag</param>
  1019. </member>
  1020. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawVarint32(System.UInt32)">
  1021. <summary>
  1022. Writes a 32 bit value as a varint. The fast route is taken when
  1023. there's enough buffer space left to whizz through without checking
  1024. for each byte; otherwise, we resort to calling WriteRawByte each time.
  1025. </summary>
  1026. </member>
  1027. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawBytes(System.Byte[])">
  1028. <summary>
  1029. Writes out an array of bytes.
  1030. </summary>
  1031. </member>
  1032. <member name="M:Google.Protobuf.CodedOutputStream.WriteRawBytes(System.Byte[],System.Int32,System.Int32)">
  1033. <summary>
  1034. Writes out part of an array of bytes.
  1035. </summary>
  1036. </member>
  1037. <member name="T:Google.Protobuf.CodedOutputStream.OutOfSpaceException">
  1038. <summary>
  1039. Indicates that a CodedOutputStream wrapping a flat byte array
  1040. ran out of space.
  1041. </summary>
  1042. </member>
  1043. <member name="M:Google.Protobuf.CodedOutputStream.Dispose">
  1044. <summary>
  1045. Flushes any buffered data and optionally closes the underlying stream, if any.
  1046. </summary>
  1047. <remarks>
  1048. <para>
  1049. By default, any underlying stream is closed by this method. To configure this behaviour,
  1050. use a constructor overload with a <c>leaveOpen</c> parameter. If this instance does not
  1051. have an underlying stream, this method does nothing.
  1052. </para>
  1053. <para>
  1054. For the sake of efficiency, calling this method does not prevent future write calls - but
  1055. if a later write ends up writing to a stream which has been disposed, that is likely to
  1056. fail. It is recommend that you not call any other methods after this.
  1057. </para>
  1058. </remarks>
  1059. </member>
  1060. <member name="M:Google.Protobuf.CodedOutputStream.Flush">
  1061. <summary>
  1062. Flushes any buffered data to the underlying stream (if there is one).
  1063. </summary>
  1064. </member>
  1065. <member name="M:Google.Protobuf.CodedOutputStream.CheckNoSpaceLeft">
  1066. <summary>
  1067. Verifies that SpaceLeft returns zero. It's common to create a byte array
  1068. that is exactly big enough to hold a message, then write to it with
  1069. a CodedOutputStream. Calling CheckNoSpaceLeft after writing verifies that
  1070. the message was actually as big as expected, which can help finding bugs.
  1071. </summary>
  1072. </member>
  1073. <member name="P:Google.Protobuf.CodedOutputStream.SpaceLeft">
  1074. <summary>
  1075. If writing to a flat array, returns the space left in the array. Otherwise,
  1076. throws an InvalidOperationException.
  1077. </summary>
  1078. </member>
  1079. <member name="T:Google.Protobuf.Collections.Lists">
  1080. <summary>
  1081. Utility to compare if two Lists are the same, and the hash code
  1082. of a List.
  1083. </summary>
  1084. </member>
  1085. <member name="M:Google.Protobuf.Collections.Lists.Equals``1(System.Collections.Generic.List{``0},System.Collections.Generic.List{``0})">
  1086. <summary>
  1087. Checks if two lists are equal.
  1088. </summary>
  1089. </member>
  1090. <member name="M:Google.Protobuf.Collections.Lists.GetHashCode``1(System.Collections.Generic.List{``0})">
  1091. <summary>
  1092. Gets the list's hash code.
  1093. </summary>
  1094. </member>
  1095. <member name="T:Google.Protobuf.Collections.MapField`2">
  1096. <summary>
  1097. Representation of a map field in a Protocol Buffer message.
  1098. </summary>
  1099. <typeparam name="TKey">Key type in the map. Must be a type supported by Protocol Buffer map keys.</typeparam>
  1100. <typeparam name="TValue">Value type in the map. Must be a type supported by Protocol Buffers.</typeparam>
  1101. <remarks>
  1102. <para>
  1103. For string keys, the equality comparison is provided by <see cref="P:System.StringComparer.Ordinal" />.
  1104. </para>
  1105. <para>
  1106. Null values are not permitted in the map, either for wrapper types or regular messages.
  1107. If a map is deserialized from a data stream and the value is missing from an entry, a default value
  1108. is created instead. For primitive types, that is the regular default value (0, the empty string and so
  1109. on); for message types, an empty instance of the message is created, as if the map entry contained a 0-length
  1110. encoded value for the field.
  1111. </para>
  1112. <para>
  1113. This implementation does not generally prohibit the use of key/value types which are not
  1114. supported by Protocol Buffers (e.g. using a key type of <code>byte</code>) but nor does it guarantee
  1115. that all operations will work in such cases.
  1116. </para>
  1117. <para>
  1118. The order in which entries are returned when iterating over this object is undefined, and may change
  1119. in future versions.
  1120. </para>
  1121. </remarks>
  1122. </member>
  1123. <member name="M:Google.Protobuf.Collections.MapField`2.Clone">
  1124. <summary>
  1125. Creates a deep clone of this object.
  1126. </summary>
  1127. <returns>
  1128. A deep clone of this object.
  1129. </returns>
  1130. </member>
  1131. <member name="M:Google.Protobuf.Collections.MapField`2.Add(`0,`1)">
  1132. <summary>
  1133. Adds the specified key/value pair to the map.
  1134. </summary>
  1135. <remarks>
  1136. This operation fails if the key already exists in the map. To replace an existing entry, use the indexer.
  1137. </remarks>
  1138. <param name="key">The key to add</param>
  1139. <param name="value">The value to add.</param>
  1140. <exception cref="T:System.ArgumentException">The given key already exists in map.</exception>
  1141. </member>
  1142. <member name="M:Google.Protobuf.Collections.MapField`2.ContainsKey(`0)">
  1143. <summary>
  1144. Determines whether the specified key is present in the map.
  1145. </summary>
  1146. <param name="key">The key to check.</param>
  1147. <returns><c>true</c> if the map contains the given key; <c>false</c> otherwise.</returns>
  1148. </member>
  1149. <member name="M:Google.Protobuf.Collections.MapField`2.Remove(`0)">
  1150. <summary>
  1151. Removes the entry identified by the given key from the map.
  1152. </summary>
  1153. <param name="key">The key indicating the entry to remove from the map.</param>
  1154. <returns><c>true</c> if the map contained the given key before the entry was removed; <c>false</c> otherwise.</returns>
  1155. </member>
  1156. <member name="M:Google.Protobuf.Collections.MapField`2.TryGetValue(`0,`1@)">
  1157. <summary>
  1158. Gets the value associated with the specified key.
  1159. </summary>
  1160. <param name="key">The key whose value to get.</param>
  1161. <param name="value">When this method returns, the value associated with the specified key, if the key is found;
  1162. otherwise, the default value for the type of the <paramref name="value"/> parameter.
  1163. This parameter is passed uninitialized.</param>
  1164. <returns><c>true</c> if the map contains an element with the specified key; otherwise, <c>false</c>.</returns>
  1165. </member>
  1166. <member name="P:Google.Protobuf.Collections.MapField`2.Item(`0)">
  1167. <summary>
  1168. Gets or sets the value associated with the specified key.
  1169. </summary>
  1170. <param name="key">The key of the value to get or set.</param>
  1171. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and key does not exist in the collection.</exception>
  1172. <returns>The value associated with the specified key. If the specified key is not found,
  1173. a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException"/>, and a set operation creates a new element with the specified key.</returns>
  1174. </member>
  1175. <member name="P:Google.Protobuf.Collections.MapField`2.Keys">
  1176. <summary>
  1177. Gets a collection containing the keys in the map.
  1178. </summary>
  1179. </member>
  1180. <member name="P:Google.Protobuf.Collections.MapField`2.Values">
  1181. <summary>
  1182. Gets a collection containing the values in the map.
  1183. </summary>
  1184. </member>
  1185. <member name="M:Google.Protobuf.Collections.MapField`2.Add(System.Collections.Generic.IDictionary{`0,`1})">
  1186. <summary>
  1187. Adds the specified entries to the map. The keys and values are not automatically cloned.
  1188. </summary>
  1189. <param name="entries">The entries to add to the map.</param>
  1190. </member>
  1191. <member name="M:Google.Protobuf.Collections.MapField`2.GetEnumerator">
  1192. <summary>
  1193. Returns an enumerator that iterates through the collection.
  1194. </summary>
  1195. <returns>
  1196. An enumerator that can be used to iterate through the collection.
  1197. </returns>
  1198. </member>
  1199. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#IEnumerable#GetEnumerator">
  1200. <summary>
  1201. Returns an enumerator that iterates through a collection.
  1202. </summary>
  1203. <returns>
  1204. An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.
  1205. </returns>
  1206. </member>
  1207. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  1208. <summary>
  1209. Adds the specified item to the map.
  1210. </summary>
  1211. <param name="item">The item to add to the map.</param>
  1212. </member>
  1213. <member name="M:Google.Protobuf.Collections.MapField`2.Clear">
  1214. <summary>
  1215. Removes all items from the map.
  1216. </summary>
  1217. </member>
  1218. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  1219. <summary>
  1220. Determines whether map contains an entry equivalent to the given key/value pair.
  1221. </summary>
  1222. <param name="item">The key/value pair to find.</param>
  1223. <returns></returns>
  1224. </member>
  1225. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  1226. <summary>
  1227. Copies the key/value pairs in this map to an array.
  1228. </summary>
  1229. <param name="array">The array to copy the entries into.</param>
  1230. <param name="arrayIndex">The index of the array at which to start copying values.</param>
  1231. </member>
  1232. <member name="M:Google.Protobuf.Collections.MapField`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  1233. <summary>
  1234. Removes the specified key/value pair from the map.
  1235. </summary>
  1236. <remarks>Both the key and the value must be found for the entry to be removed.</remarks>
  1237. <param name="item">The key/value pair to remove.</param>
  1238. <returns><c>true</c> if the key/value pair was found and removed; <c>false</c> otherwise.</returns>
  1239. </member>
  1240. <member name="P:Google.Protobuf.Collections.MapField`2.Count">
  1241. <summary>
  1242. Gets the number of elements contained in the map.
  1243. </summary>
  1244. </member>
  1245. <member name="P:Google.Protobuf.Collections.MapField`2.IsReadOnly">
  1246. <summary>
  1247. Gets a value indicating whether the map is read-only.
  1248. </summary>
  1249. </member>
  1250. <member name="M:Google.Protobuf.Collections.MapField`2.Equals(System.Object)">
  1251. <summary>
  1252. Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
  1253. </summary>
  1254. <param name="other">The <see cref="T:System.Object" /> to compare with this instance.</param>
  1255. <returns>
  1256. <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
  1257. </returns>
  1258. </member>
  1259. <member name="M:Google.Protobuf.Collections.MapField`2.GetHashCode">
  1260. <summary>
  1261. Returns a hash code for this instance.
  1262. </summary>
  1263. <returns>
  1264. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
  1265. </returns>
  1266. </member>
  1267. <member name="M:Google.Protobuf.Collections.MapField`2.Equals(Google.Protobuf.Collections.MapField{`0,`1})">
  1268. <summary>
  1269. Compares this map with another for equality.
  1270. </summary>
  1271. <remarks>
  1272. The order of the key/value pairs in the maps is not deemed significant in this comparison.
  1273. </remarks>
  1274. <param name="other">The map to compare this with.</param>
  1275. <returns><c>true</c> if <paramref name="other"/> refers to an equal map; <c>false</c> otherwise.</returns>
  1276. </member>
  1277. <member name="M:Google.Protobuf.Collections.MapField`2.AddEntriesFrom(Google.Protobuf.CodedInputStream,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1278. <summary>
  1279. Adds entries to the map from the given stream.
  1280. </summary>
  1281. <remarks>
  1282. It is assumed that the stream is initially positioned after the tag specified by the codec.
  1283. This method will continue reading entries from the stream until the end is reached, or
  1284. a different tag is encountered.
  1285. </remarks>
  1286. <param name="input">Stream to read from</param>
  1287. <param name="codec">Codec describing how the key/value pairs are encoded</param>
  1288. </member>
  1289. <member name="M:Google.Protobuf.Collections.MapField`2.AddEntriesFrom(Google.Protobuf.ParseContext@,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1290. <summary>
  1291. Adds entries to the map from the given parse context.
  1292. </summary>
  1293. <remarks>
  1294. It is assumed that the input is initially positioned after the tag specified by the codec.
  1295. This method will continue reading entries from the input until the end is reached, or
  1296. a different tag is encountered.
  1297. </remarks>
  1298. <param name="ctx">Input to read from</param>
  1299. <param name="codec">Codec describing how the key/value pairs are encoded</param>
  1300. </member>
  1301. <member name="M:Google.Protobuf.Collections.MapField`2.WriteTo(Google.Protobuf.CodedOutputStream,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1302. <summary>
  1303. Writes the contents of this map to the given coded output stream, using the specified codec
  1304. to encode each entry.
  1305. </summary>
  1306. <param name="output">The output stream to write to.</param>
  1307. <param name="codec">The codec to use for each entry.</param>
  1308. </member>
  1309. <member name="M:Google.Protobuf.Collections.MapField`2.WriteTo(Google.Protobuf.WriteContext@,Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1310. <summary>
  1311. Writes the contents of this map to the given write context, using the specified codec
  1312. to encode each entry.
  1313. </summary>
  1314. <param name="ctx">The write context to write to.</param>
  1315. <param name="codec">The codec to use for each entry.</param>
  1316. </member>
  1317. <member name="M:Google.Protobuf.Collections.MapField`2.CalculateSize(Google.Protobuf.Collections.MapField{`0,`1}.Codec)">
  1318. <summary>
  1319. Calculates the size of this map based on the given entry codec.
  1320. </summary>
  1321. <param name="codec">The codec to use to encode each entry.</param>
  1322. <returns></returns>
  1323. </member>
  1324. <member name="M:Google.Protobuf.Collections.MapField`2.ToString">
  1325. <summary>
  1326. Returns a string representation of this repeated field, in the same
  1327. way as it would be represented by the default JSON formatter.
  1328. </summary>
  1329. </member>
  1330. <member name="T:Google.Protobuf.Collections.MapField`2.Codec">
  1331. <summary>
  1332. A codec for a specific map field. This contains all the information required to encode and
  1333. decode the nested messages.
  1334. </summary>
  1335. </member>
  1336. <member name="M:Google.Protobuf.Collections.MapField`2.Codec.#ctor(Google.Protobuf.FieldCodec{`0},Google.Protobuf.FieldCodec{`1},System.UInt32)">
  1337. <summary>
  1338. Creates a new entry codec based on a separate key codec and value codec,
  1339. and the tag to use for each map entry.
  1340. </summary>
  1341. <param name="keyCodec">The key codec.</param>
  1342. <param name="valueCodec">The value codec.</param>
  1343. <param name="mapTag">The map tag to use to introduce each map entry.</param>
  1344. </member>
  1345. <member name="P:Google.Protobuf.Collections.MapField`2.Codec.KeyCodec">
  1346. <summary>
  1347. The key codec.
  1348. </summary>
  1349. </member>
  1350. <member name="P:Google.Protobuf.Collections.MapField`2.Codec.ValueCodec">
  1351. <summary>
  1352. The value codec.
  1353. </summary>
  1354. </member>
  1355. <member name="P:Google.Protobuf.Collections.MapField`2.Codec.MapTag">
  1356. <summary>
  1357. The tag used in the enclosing message to indicate map entries.
  1358. </summary>
  1359. </member>
  1360. <member name="T:Google.Protobuf.Collections.ProtobufEqualityComparers">
  1361. <summary>
  1362. Provides a central place to implement equality comparisons, primarily for bitwise float/double equality.
  1363. </summary>
  1364. </member>
  1365. <member name="M:Google.Protobuf.Collections.ProtobufEqualityComparers.GetEqualityComparer``1">
  1366. <summary>
  1367. Returns an equality comparer for <typeparamref name="T"/> suitable for Protobuf equality comparisons.
  1368. This is usually just the default equality comparer for the type, but floating point numbers are compared
  1369. bitwise.
  1370. </summary>
  1371. <typeparam name="T">The type of equality comparer to return.</typeparam>
  1372. <returns>The equality comparer.</returns>
  1373. </member>
  1374. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseDoubleEqualityComparer">
  1375. <summary>
  1376. Returns an equality comparer suitable for comparing 64-bit floating point values, by bitwise comparison.
  1377. (NaN values are considered equal, but only when they have the same representation.)
  1378. </summary>
  1379. </member>
  1380. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseSingleEqualityComparer">
  1381. <summary>
  1382. Returns an equality comparer suitable for comparing 32-bit floating point values, by bitwise comparison.
  1383. (NaN values are considered equal, but only when they have the same representation.)
  1384. </summary>
  1385. </member>
  1386. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseNullableDoubleEqualityComparer">
  1387. <summary>
  1388. Returns an equality comparer suitable for comparing nullable 64-bit floating point values, by bitwise comparison.
  1389. (NaN values are considered equal, but only when they have the same representation.)
  1390. </summary>
  1391. </member>
  1392. <member name="P:Google.Protobuf.Collections.ProtobufEqualityComparers.BitwiseNullableSingleEqualityComparer">
  1393. <summary>
  1394. Returns an equality comparer suitable for comparing nullable 32-bit floating point values, by bitwise comparison.
  1395. (NaN values are considered equal, but only when they have the same representation.)
  1396. </summary>
  1397. </member>
  1398. <member name="T:Google.Protobuf.Collections.ReadOnlyDictionary`2">
  1399. <summary>
  1400. Read-only wrapper around another dictionary.
  1401. </summary>
  1402. </member>
  1403. <member name="T:Google.Protobuf.Collections.RepeatedField`1">
  1404. <summary>
  1405. The contents of a repeated field: essentially, a collection with some extra
  1406. restrictions (no null values) and capabilities (deep cloning).
  1407. </summary>
  1408. <remarks>
  1409. This implementation does not generally prohibit the use of types which are not
  1410. supported by Protocol Buffers but nor does it guarantee that all operations will work in such cases.
  1411. </remarks>
  1412. <typeparam name="T">The element type of the repeated field.</typeparam>
  1413. </member>
  1414. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Clone">
  1415. <summary>
  1416. Creates a deep clone of this repeated field.
  1417. </summary>
  1418. <remarks>
  1419. If the field type is
  1420. a message type, each element is also cloned; otherwise, it is
  1421. assumed that the field type is primitive (including string and
  1422. bytes, both of which are immutable) and so a simple copy is
  1423. equivalent to a deep clone.
  1424. </remarks>
  1425. <returns>A deep clone of this repeated field.</returns>
  1426. </member>
  1427. <member name="M:Google.Protobuf.Collections.RepeatedField`1.AddEntriesFrom(Google.Protobuf.CodedInputStream,Google.Protobuf.FieldCodec{`0})">
  1428. <summary>
  1429. Adds the entries from the given input stream, decoding them with the specified codec.
  1430. </summary>
  1431. <param name="input">The input stream to read from.</param>
  1432. <param name="codec">The codec to use in order to read each entry.</param>
  1433. </member>
  1434. <member name="M:Google.Protobuf.Collections.RepeatedField`1.AddEntriesFrom(Google.Protobuf.ParseContext@,Google.Protobuf.FieldCodec{`0})">
  1435. <summary>
  1436. Adds the entries from the given parse context, decoding them with the specified codec.
  1437. </summary>
  1438. <param name="ctx">The input to read from.</param>
  1439. <param name="codec">The codec to use in order to read each entry.</param>
  1440. </member>
  1441. <member name="M:Google.Protobuf.Collections.RepeatedField`1.CalculateSize(Google.Protobuf.FieldCodec{`0})">
  1442. <summary>
  1443. Calculates the size of this collection based on the given codec.
  1444. </summary>
  1445. <param name="codec">The codec to use when encoding each field.</param>
  1446. <returns>The number of bytes that would be written to an output by one of the <c>WriteTo</c> methods,
  1447. using the same codec.</returns>
  1448. </member>
  1449. <member name="M:Google.Protobuf.Collections.RepeatedField`1.WriteTo(Google.Protobuf.CodedOutputStream,Google.Protobuf.FieldCodec{`0})">
  1450. <summary>
  1451. Writes the contents of this collection to the given <see cref="T:Google.Protobuf.CodedOutputStream"/>,
  1452. encoding each value using the specified codec.
  1453. </summary>
  1454. <param name="output">The output stream to write to.</param>
  1455. <param name="codec">The codec to use when encoding each value.</param>
  1456. </member>
  1457. <member name="M:Google.Protobuf.Collections.RepeatedField`1.WriteTo(Google.Protobuf.WriteContext@,Google.Protobuf.FieldCodec{`0})">
  1458. <summary>
  1459. Writes the contents of this collection to the given write context,
  1460. encoding each value using the specified codec.
  1461. </summary>
  1462. <param name="ctx">The write context to write to.</param>
  1463. <param name="codec">The codec to use when encoding each value.</param>
  1464. </member>
  1465. <member name="P:Google.Protobuf.Collections.RepeatedField`1.Capacity">
  1466. <summary>
  1467. Gets and sets the capacity of the RepeatedField's internal array. WHen set, the internal array is reallocated to the given capacity.
  1468. <exception cref="T:System.ArgumentOutOfRangeException">The new value is less than Count -or- when Count is less than 0.</exception>
  1469. </summary>
  1470. </member>
  1471. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Add(`0)">
  1472. <summary>
  1473. Adds the specified item to the collection.
  1474. </summary>
  1475. <param name="item">The item to add.</param>
  1476. </member>
  1477. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Clear">
  1478. <summary>
  1479. Removes all items from the collection.
  1480. </summary>
  1481. </member>
  1482. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Contains(`0)">
  1483. <summary>
  1484. Determines whether this collection contains the given item.
  1485. </summary>
  1486. <param name="item">The item to find.</param>
  1487. <returns><c>true</c> if this collection contains the given item; <c>false</c> otherwise.</returns>
  1488. </member>
  1489. <member name="M:Google.Protobuf.Collections.RepeatedField`1.CopyTo(`0[],System.Int32)">
  1490. <summary>
  1491. Copies this collection to the given array.
  1492. </summary>
  1493. <param name="array">The array to copy to.</param>
  1494. <param name="arrayIndex">The first index of the array to copy to.</param>
  1495. </member>
  1496. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Remove(`0)">
  1497. <summary>
  1498. Removes the specified item from the collection
  1499. </summary>
  1500. <param name="item">The item to remove.</param>
  1501. <returns><c>true</c> if the item was found and removed; <c>false</c> otherwise.</returns>
  1502. </member>
  1503. <member name="P:Google.Protobuf.Collections.RepeatedField`1.Count">
  1504. <summary>
  1505. Gets the number of elements contained in the collection.
  1506. </summary>
  1507. </member>
  1508. <member name="P:Google.Protobuf.Collections.RepeatedField`1.IsReadOnly">
  1509. <summary>
  1510. Gets a value indicating whether the collection is read-only.
  1511. </summary>
  1512. </member>
  1513. <member name="M:Google.Protobuf.Collections.RepeatedField`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
  1514. <summary>
  1515. Adds all of the specified values into this collection.
  1516. </summary>
  1517. <param name="values">The values to add to this collection.</param>
  1518. </member>
  1519. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Add(System.Collections.Generic.IEnumerable{`0})">
  1520. <summary>
  1521. Adds all of the specified values into this collection. This method is present to
  1522. allow repeated fields to be constructed from queries within collection initializers.
  1523. Within non-collection-initializer code, consider using the equivalent <see cref="M:Google.Protobuf.Collections.RepeatedField`1.AddRange(System.Collections.Generic.IEnumerable{`0})"/>
  1524. method instead for clarity.
  1525. </summary>
  1526. <param name="values">The values to add to this collection.</param>
  1527. </member>
  1528. <member name="M:Google.Protobuf.Collections.RepeatedField`1.GetEnumerator">
  1529. <summary>
  1530. Returns an enumerator that iterates through the collection.
  1531. </summary>
  1532. <returns>
  1533. An enumerator that can be used to iterate through the collection.
  1534. </returns>
  1535. </member>
  1536. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Equals(System.Object)">
  1537. <summary>
  1538. Determines whether the specified <see cref="T:System.Object" />, is equal to this instance.
  1539. </summary>
  1540. <param name="obj">The <see cref="T:System.Object" /> to compare with this instance.</param>
  1541. <returns>
  1542. <c>true</c> if the specified <see cref="T:System.Object" /> is equal to this instance; otherwise, <c>false</c>.
  1543. </returns>
  1544. </member>
  1545. <member name="M:Google.Protobuf.Collections.RepeatedField`1.System#Collections#IEnumerable#GetEnumerator">
  1546. <summary>
  1547. Returns an enumerator that iterates through a collection.
  1548. </summary>
  1549. <returns>
  1550. An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.
  1551. </returns>
  1552. </member>
  1553. <member name="M:Google.Protobuf.Collections.RepeatedField`1.GetHashCode">
  1554. <summary>
  1555. Returns a hash code for this instance.
  1556. </summary>
  1557. <returns>
  1558. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
  1559. </returns>
  1560. </member>
  1561. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Equals(Google.Protobuf.Collections.RepeatedField{`0})">
  1562. <summary>
  1563. Compares this repeated field with another for equality.
  1564. </summary>
  1565. <param name="other">The repeated field to compare this with.</param>
  1566. <returns><c>true</c> if <paramref name="other"/> refers to an equal repeated field; <c>false</c> otherwise.</returns>
  1567. </member>
  1568. <member name="M:Google.Protobuf.Collections.RepeatedField`1.IndexOf(`0)">
  1569. <summary>
  1570. Returns the index of the given item within the collection, or -1 if the item is not
  1571. present.
  1572. </summary>
  1573. <param name="item">The item to find in the collection.</param>
  1574. <returns>The zero-based index of the item, or -1 if it is not found.</returns>
  1575. </member>
  1576. <member name="M:Google.Protobuf.Collections.RepeatedField`1.Insert(System.Int32,`0)">
  1577. <summary>
  1578. Inserts the given item at the specified index.
  1579. </summary>
  1580. <param name="index">The index at which to insert the item.</param>
  1581. <param name="item">The item to insert.</param>
  1582. </member>
  1583. <member name="M:Google.Protobuf.Collections.RepeatedField`1.RemoveAt(System.Int32)">
  1584. <summary>
  1585. Removes the item at the given index.
  1586. </summary>
  1587. <param name="index">The zero-based index of the item to remove.</param>
  1588. </member>
  1589. <member name="M:Google.Protobuf.Collections.RepeatedField`1.ToString">
  1590. <summary>
  1591. Returns a string representation of this repeated field, in the same
  1592. way as it would be represented by the default JSON formatter.
  1593. </summary>
  1594. </member>
  1595. <member name="P:Google.Protobuf.Collections.RepeatedField`1.Item(System.Int32)">
  1596. <summary>
  1597. Gets or sets the item at the specified index.
  1598. </summary>
  1599. <value>
  1600. The element at the specified index.
  1601. </value>
  1602. <param name="index">The zero-based index of the element to get or set.</param>
  1603. <returns>The item at the specified index.</returns>
  1604. </member>
  1605. <member name="T:Google.Protobuf.Compatibility.PropertyInfoExtensions">
  1606. <summary>
  1607. Extension methods for <see cref="T:System.Reflection.PropertyInfo"/>, effectively providing
  1608. the familiar members from previous desktop framework versions while
  1609. targeting the newer releases, .NET Core etc.
  1610. </summary>
  1611. </member>
  1612. <member name="M:Google.Protobuf.Compatibility.PropertyInfoExtensions.GetGetMethod(System.Reflection.PropertyInfo)">
  1613. <summary>
  1614. Returns the public getter of a property, or null if there is no such getter
  1615. (either because it's read-only, or the getter isn't public).
  1616. </summary>
  1617. </member>
  1618. <member name="M:Google.Protobuf.Compatibility.PropertyInfoExtensions.GetSetMethod(System.Reflection.PropertyInfo)">
  1619. <summary>
  1620. Returns the public setter of a property, or null if there is no such setter
  1621. (either because it's write-only, or the setter isn't public).
  1622. </summary>
  1623. </member>
  1624. <member name="T:Google.Protobuf.Compatibility.TypeExtensions">
  1625. <summary>
  1626. Provides extension methods on Type that just proxy to TypeInfo.
  1627. These are used to support the new type system from .NET 4.5, without
  1628. having calls to GetTypeInfo all over the place. While the methods here are meant to be
  1629. broadly compatible with the desktop framework, there are some subtle differences in behaviour - but
  1630. they're not expected to affect our use cases. While the class is internal, that should be fine: we can
  1631. evaluate each new use appropriately.
  1632. </summary>
  1633. </member>
  1634. <member name="M:Google.Protobuf.Compatibility.TypeExtensions.IsAssignableFrom(System.Type,System.Type)">
  1635. <summary>
  1636. See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom
  1637. </summary>
  1638. </member>
  1639. <member name="M:Google.Protobuf.Compatibility.TypeExtensions.GetProperty(System.Type,System.String)">
  1640. <summary>
  1641. Returns a representation of the public property associated with the given name in the given type,
  1642. including inherited properties or null if there is no such public property.
  1643. Here, "public property" means a property where either the getter, or the setter, or both, is public.
  1644. </summary>
  1645. </member>
  1646. <member name="M:Google.Protobuf.Compatibility.TypeExtensions.GetMethod(System.Type,System.String)">
  1647. <summary>
  1648. Returns a representation of the public method associated with the given name in the given type,
  1649. including inherited methods.
  1650. </summary>
  1651. <remarks>
  1652. This has a few differences compared with Type.GetMethod in the desktop framework. It will throw
  1653. if there is an ambiguous match even between a private method and a public one, but it *won't* throw
  1654. if there are two overloads at different levels in the type hierarchy (e.g. class Base declares public void Foo(int) and
  1655. class Child : Base declares public void Foo(long)).
  1656. </remarks>
  1657. <exception cref="T:System.Reflection.AmbiguousMatchException">One type in the hierarchy declared more than one method with the same name</exception>
  1658. </member>
  1659. <member name="T:Google.Protobuf.Extension">
  1660. <summary>
  1661. Represents a non-generic extension definition. This API is experimental and subject to change.
  1662. </summary>
  1663. </member>
  1664. <member name="M:Google.Protobuf.Extension.#ctor(System.Int32)">
  1665. <summary>
  1666. Internal use. Creates a new extension with the specified field number.
  1667. </summary>
  1668. </member>
  1669. <member name="P:Google.Protobuf.Extension.FieldNumber">
  1670. <summary>
  1671. Gets the field number of this extension
  1672. </summary>
  1673. </member>
  1674. <member name="T:Google.Protobuf.Extension`2">
  1675. <summary>
  1676. Represents a type-safe extension identifier used for getting and setting single extension values in <see cref="T:Google.Protobuf.IExtendableMessage`1"/> instances.
  1677. This API is experimental and subject to change.
  1678. </summary>
  1679. <typeparam name="TTarget">The message type this field applies to</typeparam>
  1680. <typeparam name="TValue">The field value type of this extension</typeparam>
  1681. </member>
  1682. <member name="M:Google.Protobuf.Extension`2.#ctor(System.Int32,Google.Protobuf.FieldCodec{`1})">
  1683. <summary>
  1684. Creates a new extension identifier with the specified field number and codec
  1685. </summary>
  1686. </member>
  1687. <member name="T:Google.Protobuf.RepeatedExtension`2">
  1688. <summary>
  1689. Represents a type-safe extension identifier used for getting repeated extension values in <see cref="T:Google.Protobuf.IExtendableMessage`1"/> instances.
  1690. This API is experimental and subject to change.
  1691. </summary>
  1692. <typeparam name="TTarget">The message type this field applies to</typeparam>
  1693. <typeparam name="TValue">The repeated field value type of this extension</typeparam>
  1694. </member>
  1695. <member name="M:Google.Protobuf.RepeatedExtension`2.#ctor(System.Int32,Google.Protobuf.FieldCodec{`1})">
  1696. <summary>
  1697. Creates a new repeated extension identifier with the specified field number and codec
  1698. </summary>
  1699. </member>
  1700. <member name="T:Google.Protobuf.ExtensionRegistry">
  1701. <summary>
  1702. Provides extensions to messages while parsing. This API is experimental and subject to change.
  1703. </summary>
  1704. </member>
  1705. <member name="M:Google.Protobuf.ExtensionRegistry.#ctor">
  1706. <summary>
  1707. Creates a new empty extension registry
  1708. </summary>
  1709. </member>
  1710. <member name="P:Google.Protobuf.ExtensionRegistry.Count">
  1711. <summary>
  1712. Gets the total number of extensions in this extension registry
  1713. </summary>
  1714. </member>
  1715. <member name="P:Google.Protobuf.ExtensionRegistry.System#Collections#Generic#ICollection{Google#Protobuf#Extension}#IsReadOnly">
  1716. <summary>
  1717. Returns whether the registry is readonly
  1718. </summary>
  1719. </member>
  1720. <member name="M:Google.Protobuf.ExtensionRegistry.Add(Google.Protobuf.Extension)">
  1721. <summary>
  1722. Adds the specified extension to the registry
  1723. </summary>
  1724. </member>
  1725. <member name="M:Google.Protobuf.ExtensionRegistry.AddRange(System.Collections.Generic.IEnumerable{Google.Protobuf.Extension})">
  1726. <summary>
  1727. Adds the specified extensions to the registry
  1728. </summary>
  1729. </member>
  1730. <member name="M:Google.Protobuf.ExtensionRegistry.Clear">
  1731. <summary>
  1732. Clears the registry of all values
  1733. </summary>
  1734. </member>
  1735. <member name="M:Google.Protobuf.ExtensionRegistry.Contains(Google.Protobuf.Extension)">
  1736. <summary>
  1737. Gets whether the extension registry contains the specified extension
  1738. </summary>
  1739. </member>
  1740. <member name="M:Google.Protobuf.ExtensionRegistry.System#Collections#Generic#ICollection{Google#Protobuf#Extension}#CopyTo(Google.Protobuf.Extension[],System.Int32)">
  1741. <summary>
  1742. Copies the arrays in the registry set to the specified array at the specified index
  1743. </summary>
  1744. <param name="array">The array to copy to</param>
  1745. <param name="arrayIndex">The array index to start at</param>
  1746. </member>
  1747. <member name="M:Google.Protobuf.ExtensionRegistry.GetEnumerator">
  1748. <summary>
  1749. Returns an enumerator to enumerate through the items in the registry
  1750. </summary>
  1751. <returns>Returns an enumerator for the extensions in this registry</returns>
  1752. </member>
  1753. <member name="M:Google.Protobuf.ExtensionRegistry.Remove(Google.Protobuf.Extension)">
  1754. <summary>
  1755. Removes the specified extension from the set
  1756. </summary>
  1757. <param name="item">The extension</param>
  1758. <returns><c>true</c> if the extension was removed, otherwise <c>false</c></returns>
  1759. </member>
  1760. <member name="M:Google.Protobuf.ExtensionRegistry.Clone">
  1761. <summary>
  1762. Clones the registry into a new registry
  1763. </summary>
  1764. </member>
  1765. <member name="T:Google.Protobuf.ExtensionSet">
  1766. <summary>
  1767. Methods for managing <see cref="T:Google.Protobuf.ExtensionSet`1"/>s with null checking.
  1768. Most users will not use this class directly and its API is experimental and subject to change.
  1769. </summary>
  1770. </member>
  1771. <member name="M:Google.Protobuf.ExtensionSet.Get``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1})">
  1772. <summary>
  1773. Gets the value of the specified extension
  1774. </summary>
  1775. </member>
  1776. <member name="M:Google.Protobuf.ExtensionSet.Get``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.RepeatedExtension{``0,``1})">
  1777. <summary>
  1778. Gets the value of the specified repeated extension or null if it doesn't exist in this set
  1779. </summary>
  1780. </member>
  1781. <member name="M:Google.Protobuf.ExtensionSet.GetOrInitialize``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.RepeatedExtension{``0,``1})">
  1782. <summary>
  1783. Gets the value of the specified repeated extension, registering it if it doesn't exist
  1784. </summary>
  1785. </member>
  1786. <member name="M:Google.Protobuf.ExtensionSet.Set``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1},``1)">
  1787. <summary>
  1788. Sets the value of the specified extension. This will make a new instance of ExtensionSet if the set is null.
  1789. </summary>
  1790. </member>
  1791. <member name="M:Google.Protobuf.ExtensionSet.Has``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1})">
  1792. <summary>
  1793. Gets whether the value of the specified extension is set
  1794. </summary>
  1795. </member>
  1796. <member name="M:Google.Protobuf.ExtensionSet.Clear``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.Extension{``0,``1})">
  1797. <summary>
  1798. Clears the value of the specified extension
  1799. </summary>
  1800. </member>
  1801. <member name="M:Google.Protobuf.ExtensionSet.Clear``2(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.RepeatedExtension{``0,``1})">
  1802. <summary>
  1803. Clears the value of the specified extension
  1804. </summary>
  1805. </member>
  1806. <member name="M:Google.Protobuf.ExtensionSet.TryMergeFieldFrom``1(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.CodedInputStream)">
  1807. <summary>
  1808. Tries to merge a field from the coded input, returning true if the field was merged.
  1809. If the set is null or the field was not otherwise merged, this returns false.
  1810. </summary>
  1811. </member>
  1812. <member name="M:Google.Protobuf.ExtensionSet.TryMergeFieldFrom``1(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.ParseContext@)">
  1813. <summary>
  1814. Tries to merge a field from the coded input, returning true if the field was merged.
  1815. If the set is null or the field was not otherwise merged, this returns false.
  1816. </summary>
  1817. </member>
  1818. <member name="M:Google.Protobuf.ExtensionSet.MergeFrom``1(Google.Protobuf.ExtensionSet{``0}@,Google.Protobuf.ExtensionSet{``0})">
  1819. <summary>
  1820. Merges the second set into the first set, creating a new instance if first is null
  1821. </summary>
  1822. </member>
  1823. <member name="M:Google.Protobuf.ExtensionSet.Clone``1(Google.Protobuf.ExtensionSet{``0})">
  1824. <summary>
  1825. Clones the set into a new set. If the set is null, this returns null
  1826. </summary>
  1827. </member>
  1828. <member name="T:Google.Protobuf.ExtensionSet`1">
  1829. <summary>
  1830. Used for keeping track of extensions in messages.
  1831. <see cref="T:Google.Protobuf.IExtendableMessage`1"/> methods route to this set.
  1832. Most users will not need to use this class directly
  1833. </summary>
  1834. <typeparam name="TTarget">The message type that extensions in this set target</typeparam>
  1835. </member>
  1836. <member name="M:Google.Protobuf.ExtensionSet`1.GetHashCode">
  1837. <summary>
  1838. Gets a hash code of the set
  1839. </summary>
  1840. </member>
  1841. <member name="M:Google.Protobuf.ExtensionSet`1.Equals(System.Object)">
  1842. <summary>
  1843. Returns whether this set is equal to the other object
  1844. </summary>
  1845. </member>
  1846. <member name="M:Google.Protobuf.ExtensionSet`1.CalculateSize">
  1847. <summary>
  1848. Calculates the size of this extension set
  1849. </summary>
  1850. </member>
  1851. <member name="M:Google.Protobuf.ExtensionSet`1.WriteTo(Google.Protobuf.CodedOutputStream)">
  1852. <summary>
  1853. Writes the extension values in this set to the output stream
  1854. </summary>
  1855. </member>
  1856. <member name="M:Google.Protobuf.ExtensionSet`1.WriteTo(Google.Protobuf.WriteContext@)">
  1857. <summary>
  1858. Writes the extension values in this set to the write context
  1859. </summary>
  1860. </member>
  1861. <member name="T:Google.Protobuf.FieldCodec">
  1862. <summary>
  1863. Factory methods for <see cref="T:Google.Protobuf.FieldCodec`1"/>.
  1864. </summary>
  1865. </member>
  1866. <member name="M:Google.Protobuf.FieldCodec.ForString(System.UInt32)">
  1867. <summary>
  1868. Retrieves a codec suitable for a string field with the given tag.
  1869. </summary>
  1870. <param name="tag">The tag.</param>
  1871. <returns>A codec for the given tag.</returns>
  1872. </member>
  1873. <member name="M:Google.Protobuf.FieldCodec.ForBytes(System.UInt32)">
  1874. <summary>
  1875. Retrieves a codec suitable for a bytes field with the given tag.
  1876. </summary>
  1877. <param name="tag">The tag.</param>
  1878. <returns>A codec for the given tag.</returns>
  1879. </member>
  1880. <member name="M:Google.Protobuf.FieldCodec.ForBool(System.UInt32)">
  1881. <summary>
  1882. Retrieves a codec suitable for a bool field with the given tag.
  1883. </summary>
  1884. <param name="tag">The tag.</param>
  1885. <returns>A codec for the given tag.</returns>
  1886. </member>
  1887. <member name="M:Google.Protobuf.FieldCodec.ForInt32(System.UInt32)">
  1888. <summary>
  1889. Retrieves a codec suitable for an int32 field with the given tag.
  1890. </summary>
  1891. <param name="tag">The tag.</param>
  1892. <returns>A codec for the given tag.</returns>
  1893. </member>
  1894. <member name="M:Google.Protobuf.FieldCodec.ForSInt32(System.UInt32)">
  1895. <summary>
  1896. Retrieves a codec suitable for an sint32 field with the given tag.
  1897. </summary>
  1898. <param name="tag">The tag.</param>
  1899. <returns>A codec for the given tag.</returns>
  1900. </member>
  1901. <member name="M:Google.Protobuf.FieldCodec.ForFixed32(System.UInt32)">
  1902. <summary>
  1903. Retrieves a codec suitable for a fixed32 field with the given tag.
  1904. </summary>
  1905. <param name="tag">The tag.</param>
  1906. <returns>A codec for the given tag.</returns>
  1907. </member>
  1908. <member name="M:Google.Protobuf.FieldCodec.ForSFixed32(System.UInt32)">
  1909. <summary>
  1910. Retrieves a codec suitable for an sfixed32 field with the given tag.
  1911. </summary>
  1912. <param name="tag">The tag.</param>
  1913. <returns>A codec for the given tag.</returns>
  1914. </member>
  1915. <member name="M:Google.Protobuf.FieldCodec.ForUInt32(System.UInt32)">
  1916. <summary>
  1917. Retrieves a codec suitable for a uint32 field with the given tag.
  1918. </summary>
  1919. <param name="tag">The tag.</param>
  1920. <returns>A codec for the given tag.</returns>
  1921. </member>
  1922. <member name="M:Google.Protobuf.FieldCodec.ForInt64(System.UInt32)">
  1923. <summary>
  1924. Retrieves a codec suitable for an int64 field with the given tag.
  1925. </summary>
  1926. <param name="tag">The tag.</param>
  1927. <returns>A codec for the given tag.</returns>
  1928. </member>
  1929. <member name="M:Google.Protobuf.FieldCodec.ForSInt64(System.UInt32)">
  1930. <summary>
  1931. Retrieves a codec suitable for an sint64 field with the given tag.
  1932. </summary>
  1933. <param name="tag">The tag.</param>
  1934. <returns>A codec for the given tag.</returns>
  1935. </member>
  1936. <member name="M:Google.Protobuf.FieldCodec.ForFixed64(System.UInt32)">
  1937. <summary>
  1938. Retrieves a codec suitable for a fixed64 field with the given tag.
  1939. </summary>
  1940. <param name="tag">The tag.</param>
  1941. <returns>A codec for the given tag.</returns>
  1942. </member>
  1943. <member name="M:Google.Protobuf.FieldCodec.ForSFixed64(System.UInt32)">
  1944. <summary>
  1945. Retrieves a codec suitable for an sfixed64 field with the given tag.
  1946. </summary>
  1947. <param name="tag">The tag.</param>
  1948. <returns>A codec for the given tag.</returns>
  1949. </member>
  1950. <member name="M:Google.Protobuf.FieldCodec.ForUInt64(System.UInt32)">
  1951. <summary>
  1952. Retrieves a codec suitable for a uint64 field with the given tag.
  1953. </summary>
  1954. <param name="tag">The tag.</param>
  1955. <returns>A codec for the given tag.</returns>
  1956. </member>
  1957. <member name="M:Google.Protobuf.FieldCodec.ForFloat(System.UInt32)">
  1958. <summary>
  1959. Retrieves a codec suitable for a float field with the given tag.
  1960. </summary>
  1961. <param name="tag">The tag.</param>
  1962. <returns>A codec for the given tag.</returns>
  1963. </member>
  1964. <member name="M:Google.Protobuf.FieldCodec.ForDouble(System.UInt32)">
  1965. <summary>
  1966. Retrieves a codec suitable for a double field with the given tag.
  1967. </summary>
  1968. <param name="tag">The tag.</param>
  1969. <returns>A codec for the given tag.</returns>
  1970. </member>
  1971. <member name="M:Google.Protobuf.FieldCodec.ForEnum``1(System.UInt32,System.Func{``0,System.Int32},System.Func{System.Int32,``0})">
  1972. <summary>
  1973. Retrieves a codec suitable for an enum field with the given tag.
  1974. </summary>
  1975. <param name="tag">The tag.</param>
  1976. <param name="toInt32">A conversion function from <see cref="T:System.Int32"/> to the enum type.</param>
  1977. <param name="fromInt32">A conversion function from the enum type to <see cref="T:System.Int32"/>.</param>
  1978. <returns>A codec for the given tag.</returns>
  1979. </member>
  1980. <member name="M:Google.Protobuf.FieldCodec.ForString(System.UInt32,System.String)">
  1981. <summary>
  1982. Retrieves a codec suitable for a string field with the given tag.
  1983. </summary>
  1984. <param name="tag">The tag.</param>
  1985. <param name="defaultValue">The default value.</param>
  1986. <returns>A codec for the given tag.</returns>
  1987. </member>
  1988. <member name="M:Google.Protobuf.FieldCodec.ForBytes(System.UInt32,Google.Protobuf.ByteString)">
  1989. <summary>
  1990. Retrieves a codec suitable for a bytes field with the given tag.
  1991. </summary>
  1992. <param name="tag">The tag.</param>
  1993. <param name="defaultValue">The default value.</param>
  1994. <returns>A codec for the given tag.</returns>
  1995. </member>
  1996. <member name="M:Google.Protobuf.FieldCodec.ForBool(System.UInt32,System.Boolean)">
  1997. <summary>
  1998. Retrieves a codec suitable for a bool field with the given tag.
  1999. </summary>
  2000. <param name="tag">The tag.</param>
  2001. <param name="defaultValue">The default value.</param>
  2002. <returns>A codec for the given tag.</returns>
  2003. </member>
  2004. <member name="M:Google.Protobuf.FieldCodec.ForInt32(System.UInt32,System.Int32)">
  2005. <summary>
  2006. Retrieves a codec suitable for an int32 field with the given tag.
  2007. </summary>
  2008. <param name="tag">The tag.</param>
  2009. <param name="defaultValue">The default value.</param>
  2010. <returns>A codec for the given tag.</returns>
  2011. </member>
  2012. <member name="M:Google.Protobuf.FieldCodec.ForSInt32(System.UInt32,System.Int32)">
  2013. <summary>
  2014. Retrieves a codec suitable for an sint32 field with the given tag.
  2015. </summary>
  2016. <param name="tag">The tag.</param>
  2017. <param name="defaultValue">The default value.</param>
  2018. <returns>A codec for the given tag.</returns>
  2019. </member>
  2020. <member name="M:Google.Protobuf.FieldCodec.ForFixed32(System.UInt32,System.UInt32)">
  2021. <summary>
  2022. Retrieves a codec suitable for a fixed32 field with the given tag.
  2023. </summary>
  2024. <param name="tag">The tag.</param>
  2025. <param name="defaultValue">The default value.</param>
  2026. <returns>A codec for the given tag.</returns>
  2027. </member>
  2028. <member name="M:Google.Protobuf.FieldCodec.ForSFixed32(System.UInt32,System.Int32)">
  2029. <summary>
  2030. Retrieves a codec suitable for an sfixed32 field with the given tag.
  2031. </summary>
  2032. <param name="tag">The tag.</param>
  2033. <param name="defaultValue">The default value.</param>
  2034. <returns>A codec for the given tag.</returns>
  2035. </member>
  2036. <member name="M:Google.Protobuf.FieldCodec.ForUInt32(System.UInt32,System.UInt32)">
  2037. <summary>
  2038. Retrieves a codec suitable for a uint32 field with the given tag.
  2039. </summary>
  2040. <param name="tag">The tag.</param>
  2041. <param name="defaultValue">The default value.</param>
  2042. <returns>A codec for the given tag.</returns>
  2043. </member>
  2044. <member name="M:Google.Protobuf.FieldCodec.ForInt64(System.UInt32,System.Int64)">
  2045. <summary>
  2046. Retrieves a codec suitable for an int64 field with the given tag.
  2047. </summary>
  2048. <param name="tag">The tag.</param>
  2049. <param name="defaultValue">The default value.</param>
  2050. <returns>A codec for the given tag.</returns>
  2051. </member>
  2052. <member name="M:Google.Protobuf.FieldCodec.ForSInt64(System.UInt32,System.Int64)">
  2053. <summary>
  2054. Retrieves a codec suitable for an sint64 field with the given tag.
  2055. </summary>
  2056. <param name="tag">The tag.</param>
  2057. <param name="defaultValue">The default value.</param>
  2058. <returns>A codec for the given tag.</returns>
  2059. </member>
  2060. <member name="M:Google.Protobuf.FieldCodec.ForFixed64(System.UInt32,System.UInt64)">
  2061. <summary>
  2062. Retrieves a codec suitable for a fixed64 field with the given tag.
  2063. </summary>
  2064. <param name="tag">The tag.</param>
  2065. <param name="defaultValue">The default value.</param>
  2066. <returns>A codec for the given tag.</returns>
  2067. </member>
  2068. <member name="M:Google.Protobuf.FieldCodec.ForSFixed64(System.UInt32,System.Int64)">
  2069. <summary>
  2070. Retrieves a codec suitable for an sfixed64 field with the given tag.
  2071. </summary>
  2072. <param name="tag">The tag.</param>
  2073. <param name="defaultValue">The default value.</param>
  2074. <returns>A codec for the given tag.</returns>
  2075. </member>
  2076. <member name="M:Google.Protobuf.FieldCodec.ForUInt64(System.UInt32,System.UInt64)">
  2077. <summary>
  2078. Retrieves a codec suitable for a uint64 field with the given tag.
  2079. </summary>
  2080. <param name="tag">The tag.</param>
  2081. <param name="defaultValue">The default value.</param>
  2082. <returns>A codec for the given tag.</returns>
  2083. </member>
  2084. <member name="M:Google.Protobuf.FieldCodec.ForFloat(System.UInt32,System.Single)">
  2085. <summary>
  2086. Retrieves a codec suitable for a float field with the given tag.
  2087. </summary>
  2088. <param name="tag">The tag.</param>
  2089. <param name="defaultValue">The default value.</param>
  2090. <returns>A codec for the given tag.</returns>
  2091. </member>
  2092. <member name="M:Google.Protobuf.FieldCodec.ForDouble(System.UInt32,System.Double)">
  2093. <summary>
  2094. Retrieves a codec suitable for a double field with the given tag.
  2095. </summary>
  2096. <param name="tag">The tag.</param>
  2097. <param name="defaultValue">The default value.</param>
  2098. <returns>A codec for the given tag.</returns>
  2099. </member>
  2100. <member name="M:Google.Protobuf.FieldCodec.ForEnum``1(System.UInt32,System.Func{``0,System.Int32},System.Func{System.Int32,``0},``0)">
  2101. <summary>
  2102. Retrieves a codec suitable for an enum field with the given tag.
  2103. </summary>
  2104. <param name="tag">The tag.</param>
  2105. <param name="toInt32">A conversion function from <see cref="T:System.Int32"/> to the enum type.</param>
  2106. <param name="fromInt32">A conversion function from the enum type to <see cref="T:System.Int32"/>.</param>
  2107. <param name="defaultValue">The default value.</param>
  2108. <returns>A codec for the given tag.</returns>
  2109. </member>
  2110. <member name="M:Google.Protobuf.FieldCodec.ForMessage``1(System.UInt32,Google.Protobuf.MessageParser{``0})">
  2111. <summary>
  2112. Retrieves a codec suitable for a message field with the given tag.
  2113. </summary>
  2114. <param name="tag">The tag.</param>
  2115. <param name="parser">A parser to use for the message type.</param>
  2116. <returns>A codec for the given tag.</returns>
  2117. </member>
  2118. <member name="M:Google.Protobuf.FieldCodec.ForGroup``1(System.UInt32,System.UInt32,Google.Protobuf.MessageParser{``0})">
  2119. <summary>
  2120. Retrieves a codec suitable for a group field with the given tag.
  2121. </summary>
  2122. <param name="startTag">The start group tag.</param>
  2123. <param name="endTag">The end group tag.</param>
  2124. <param name="parser">A parser to use for the group message type.</param>
  2125. <returns>A codec for given tag</returns>
  2126. </member>
  2127. <member name="M:Google.Protobuf.FieldCodec.ForClassWrapper``1(System.UInt32)">
  2128. <summary>
  2129. Creates a codec for a wrapper type of a class - which must be string or ByteString.
  2130. </summary>
  2131. </member>
  2132. <member name="M:Google.Protobuf.FieldCodec.ForStructWrapper``1(System.UInt32)">
  2133. <summary>
  2134. Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64,
  2135. Bool, Single or Double.
  2136. </summary>
  2137. </member>
  2138. <member name="T:Google.Protobuf.FieldCodec.WrapperCodecs">
  2139. <summary>
  2140. Helper code to create codecs for wrapper types.
  2141. </summary>
  2142. <remarks>
  2143. Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it
  2144. slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place,
  2145. we can refactor later if we come up with something cleaner.
  2146. </remarks>
  2147. </member>
  2148. <member name="M:Google.Protobuf.FieldCodec.WrapperCodecs.GetCodec``1">
  2149. <summary>
  2150. Returns a field codec which effectively wraps a value of type T in a message.
  2151. </summary>
  2152. </member>
  2153. <member name="T:Google.Protobuf.FieldCodec`1">
  2154. <summary>
  2155. <para>
  2156. An encode/decode pair for a single field. This effectively encapsulates
  2157. all the information needed to read or write the field value from/to a coded
  2158. stream.
  2159. </para>
  2160. <para>
  2161. This class is public and has to be as it is used by generated code, but its public
  2162. API is very limited - just what the generated code needs to call directly.
  2163. </para>
  2164. </summary>
  2165. <remarks>
  2166. This never writes default values to the stream, and does not address "packedness"
  2167. in repeated fields itself, other than to know whether or not the field *should* be packed.
  2168. </remarks>
  2169. </member>
  2170. <member name="T:Google.Protobuf.FieldCodec`1.InputMerger">
  2171. <summary>
  2172. Merges an input stream into a value
  2173. </summary>
  2174. </member>
  2175. <member name="T:Google.Protobuf.FieldCodec`1.ValuesMerger">
  2176. <summary>
  2177. Merges a value into a reference to another value, returning a boolean if the value was set
  2178. </summary>
  2179. </member>
  2180. <member name="P:Google.Protobuf.FieldCodec`1.ValueWriter">
  2181. <summary>
  2182. Returns a delegate to write a value (unconditionally) to a coded output stream.
  2183. </summary>
  2184. </member>
  2185. <member name="P:Google.Protobuf.FieldCodec`1.ValueSizeCalculator">
  2186. <summary>
  2187. Returns the size calculator for just a value.
  2188. </summary>
  2189. </member>
  2190. <member name="P:Google.Protobuf.FieldCodec`1.ValueReader">
  2191. <summary>
  2192. Returns a delegate to read a value from a coded input stream. It is assumed that
  2193. the stream is already positioned on the appropriate tag.
  2194. </summary>
  2195. </member>
  2196. <member name="P:Google.Protobuf.FieldCodec`1.ValueMerger">
  2197. <summary>
  2198. Returns a delegate to merge a value from a coded input stream.
  2199. It is assumed that the stream is already positioned on the appropriate tag
  2200. </summary>
  2201. </member>
  2202. <member name="P:Google.Protobuf.FieldCodec`1.FieldMerger">
  2203. <summary>
  2204. Returns a delegate to merge two values together.
  2205. </summary>
  2206. </member>
  2207. <member name="P:Google.Protobuf.FieldCodec`1.FixedSize">
  2208. <summary>
  2209. Returns the fixed size for an entry, or 0 if sizes vary.
  2210. </summary>
  2211. </member>
  2212. <member name="P:Google.Protobuf.FieldCodec`1.Tag">
  2213. <summary>
  2214. Gets the tag of the codec.
  2215. </summary>
  2216. <value>
  2217. The tag of the codec.
  2218. </value>
  2219. </member>
  2220. <member name="P:Google.Protobuf.FieldCodec`1.EndTag">
  2221. <summary>
  2222. Gets the end tag of the codec or 0 if there is no end tag
  2223. </summary>
  2224. <value>
  2225. The end tag of the codec.
  2226. </value>
  2227. </member>
  2228. <member name="P:Google.Protobuf.FieldCodec`1.DefaultValue">
  2229. <summary>
  2230. Default value for this codec. Usually the same for every instance of the same type, but
  2231. for string/ByteString wrapper fields the codec's default value is null, whereas for
  2232. other string/ByteString fields it's "" or ByteString.Empty.
  2233. </summary>
  2234. <value>
  2235. The default value of the codec's type.
  2236. </value>
  2237. </member>
  2238. <member name="M:Google.Protobuf.FieldCodec`1.WriteTagAndValue(Google.Protobuf.CodedOutputStream,`0)">
  2239. <summary>
  2240. Write a tag and the given value, *if* the value is not the default.
  2241. </summary>
  2242. </member>
  2243. <member name="M:Google.Protobuf.FieldCodec`1.WriteTagAndValue(Google.Protobuf.WriteContext@,`0)">
  2244. <summary>
  2245. Write a tag and the given value, *if* the value is not the default.
  2246. </summary>
  2247. </member>
  2248. <member name="M:Google.Protobuf.FieldCodec`1.Read(Google.Protobuf.CodedInputStream)">
  2249. <summary>
  2250. Reads a value of the codec type from the given <see cref="T:Google.Protobuf.CodedInputStream"/>.
  2251. </summary>
  2252. <param name="input">The input stream to read from.</param>
  2253. <returns>The value read from the stream.</returns>
  2254. </member>
  2255. <member name="M:Google.Protobuf.FieldCodec`1.Read(Google.Protobuf.ParseContext@)">
  2256. <summary>
  2257. Reads a value of the codec type from the given <see cref="T:Google.Protobuf.ParseContext"/>.
  2258. </summary>
  2259. <param name="ctx">The parse context to read from.</param>
  2260. <returns>The value read.</returns>
  2261. </member>
  2262. <member name="M:Google.Protobuf.FieldCodec`1.CalculateSizeWithTag(`0)">
  2263. <summary>
  2264. Calculates the size required to write the given value, with a tag,
  2265. if the value is not the default.
  2266. </summary>
  2267. </member>
  2268. <member name="M:Google.Protobuf.FieldCodec`1.CalculateUnconditionalSizeWithTag(`0)">
  2269. <summary>
  2270. Calculates the size required to write the given value, with a tag, even
  2271. if the value is the default.
  2272. </summary>
  2273. </member>
  2274. <member name="T:Google.Protobuf.FieldMaskTree">
  2275. <summary>
  2276. <para>A tree representation of a FieldMask. Each leaf node in this tree represent
  2277. a field path in the FieldMask.</para>
  2278. <para>For example, FieldMask "foo.bar,foo.baz,bar.baz" as a tree will be:</para>
  2279. <code>
  2280. [root] -+- foo -+- bar
  2281. | |
  2282. | +- baz
  2283. |
  2284. +- bar --- baz
  2285. </code>
  2286. <para>By representing FieldMasks with this tree structure we can easily convert
  2287. a FieldMask to a canonical form, merge two FieldMasks, calculate the
  2288. intersection to two FieldMasks and traverse all fields specified by the
  2289. FieldMask in a message tree.</para>
  2290. </summary>
  2291. </member>
  2292. <member name="M:Google.Protobuf.FieldMaskTree.#ctor">
  2293. <summary>
  2294. Creates an empty FieldMaskTree.
  2295. </summary>
  2296. </member>
  2297. <member name="M:Google.Protobuf.FieldMaskTree.#ctor(Google.Protobuf.WellKnownTypes.FieldMask)">
  2298. <summary>
  2299. Creates a FieldMaskTree for a given FieldMask.
  2300. </summary>
  2301. </member>
  2302. <member name="M:Google.Protobuf.FieldMaskTree.AddFieldPath(System.String)">
  2303. <summary>
  2304. Adds a field path to the tree. In a FieldMask, every field path matches the
  2305. specified field as well as all its sub-fields. For example, a field path
  2306. "foo.bar" matches field "foo.bar" and also "foo.bar.baz", etc. When adding
  2307. a field path to the tree, redundant sub-paths will be removed. That is,
  2308. after adding "foo.bar" to the tree, "foo.bar.baz" will be removed if it
  2309. exists, which will turn the tree node for "foo.bar" to a leaf node.
  2310. Likewise, if the field path to add is a sub-path of an existing leaf node,
  2311. nothing will be changed in the tree.
  2312. </summary>
  2313. </member>
  2314. <member name="M:Google.Protobuf.FieldMaskTree.MergeFromFieldMask(Google.Protobuf.WellKnownTypes.FieldMask)">
  2315. <summary>
  2316. Merges all field paths in a FieldMask into this tree.
  2317. </summary>
  2318. </member>
  2319. <member name="M:Google.Protobuf.FieldMaskTree.ToFieldMask">
  2320. <summary>
  2321. Converts this tree to a FieldMask.
  2322. </summary>
  2323. </member>
  2324. <member name="M:Google.Protobuf.FieldMaskTree.GetFieldPaths(Google.Protobuf.FieldMaskTree.Node,System.String,System.Collections.Generic.List{System.String})">
  2325. <summary>
  2326. Gathers all field paths in a sub-tree.
  2327. </summary>
  2328. </member>
  2329. <member name="M:Google.Protobuf.FieldMaskTree.IntersectFieldPath(System.String,Google.Protobuf.FieldMaskTree)">
  2330. <summary>
  2331. Adds the intersection of this tree with the given <paramref name="path"/> to <paramref name="output"/>.
  2332. </summary>
  2333. </member>
  2334. <member name="M:Google.Protobuf.FieldMaskTree.Merge(Google.Protobuf.IMessage,Google.Protobuf.IMessage,Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  2335. <summary>
  2336. Merges all fields specified by this FieldMaskTree from <paramref name="source"/> to <paramref name="destination"/>.
  2337. </summary>
  2338. </member>
  2339. <member name="M:Google.Protobuf.FieldMaskTree.Merge(Google.Protobuf.FieldMaskTree.Node,System.String,Google.Protobuf.IMessage,Google.Protobuf.IMessage,Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  2340. <summary>
  2341. Merges all fields specified by a sub-tree from <paramref name="source"/> to <paramref name="destination"/>.
  2342. </summary>
  2343. </member>
  2344. <member name="T:Google.Protobuf.FrameworkPortability">
  2345. <summary>
  2346. Class containing helpful workarounds for various platform compatibility
  2347. </summary>
  2348. </member>
  2349. <member name="T:Google.Protobuf.IBufferMessage">
  2350. <summary>
  2351. Interface for a Protocol Buffers message, supporting
  2352. parsing from <see cref="T:Google.Protobuf.ParseContext"/> and writing to <see cref="T:Google.Protobuf.WriteContext"/>.
  2353. </summary>
  2354. </member>
  2355. <member name="M:Google.Protobuf.IBufferMessage.InternalMergeFrom(Google.Protobuf.ParseContext@)">
  2356. <summary>
  2357. Internal implementation of merging data from given parse context into this message.
  2358. Users should never invoke this method directly.
  2359. </summary>
  2360. </member>
  2361. <member name="M:Google.Protobuf.IBufferMessage.InternalWriteTo(Google.Protobuf.WriteContext@)">
  2362. <summary>
  2363. Internal implementation of writing this message to a given write context.
  2364. Users should never invoke this method directly.
  2365. </summary>
  2366. </member>
  2367. <member name="T:Google.Protobuf.ICustomDiagnosticMessage">
  2368. <summary>
  2369. A message type that has a custom string format for diagnostic purposes.
  2370. </summary>
  2371. <remarks>
  2372. <para>
  2373. Calling <see cref="M:System.Object.ToString"/> on a generated message type normally
  2374. returns the JSON representation. If a message type implements this interface,
  2375. then the <see cref="M:Google.Protobuf.ICustomDiagnosticMessage.ToDiagnosticString"/> method will be called instead of the regular
  2376. JSON formatting code, but only when <c>ToString()</c> is called either on the message itself
  2377. or on another message which contains it. This does not affect the normal JSON formatting of
  2378. the message.
  2379. </para>
  2380. <para>
  2381. For example, if you create a proto message representing a GUID, the internal
  2382. representation may be a <c>bytes</c> field or four <c>fixed32</c> fields. However, when debugging
  2383. it may be more convenient to see a result in the same format as <see cref="T:System.Guid"/> provides.
  2384. </para>
  2385. <para>This interface extends <see cref="T:Google.Protobuf.IMessage"/> to avoid it accidentally being implemented
  2386. on types other than messages, where it would not be used by anything in the framework.</para>
  2387. </remarks>
  2388. </member>
  2389. <member name="M:Google.Protobuf.ICustomDiagnosticMessage.ToDiagnosticString">
  2390. <summary>
  2391. Returns a string representation of this object, for diagnostic purposes.
  2392. </summary>
  2393. <remarks>
  2394. This method is called when a message is formatted as part of a <see cref="M:System.Object.ToString"/>
  2395. call. It does not affect the JSON representation used by <see cref="T:Google.Protobuf.JsonFormatter"/> other than
  2396. in calls to <see cref="M:Google.Protobuf.JsonFormatter.ToDiagnosticString(Google.Protobuf.IMessage)"/>. While it is recommended
  2397. that the result is valid JSON, this is never assumed by the Protobuf library.
  2398. </remarks>
  2399. <returns>A string representation of this object, for diagnostic purposes.</returns>
  2400. </member>
  2401. <member name="T:Google.Protobuf.IDeepCloneable`1">
  2402. <summary>
  2403. Generic interface for a deeply cloneable type.
  2404. </summary>
  2405. <remarks>
  2406. <para>
  2407. All generated messages implement this interface, but so do some non-message types.
  2408. Additionally, due to the type constraint on <c>T</c> in <see cref="T:Google.Protobuf.IMessage`1"/>,
  2409. it is simpler to keep this as a separate interface.
  2410. </para>
  2411. </remarks>
  2412. <typeparam name="T">The type itself, returned by the <see cref="M:Google.Protobuf.IDeepCloneable`1.Clone"/> method.</typeparam>
  2413. </member>
  2414. <member name="M:Google.Protobuf.IDeepCloneable`1.Clone">
  2415. <summary>
  2416. Creates a deep clone of this object.
  2417. </summary>
  2418. <returns>A deep clone of this object.</returns>
  2419. </member>
  2420. <member name="T:Google.Protobuf.IExtendableMessage`1">
  2421. <summary>
  2422. Generic interface for a Protocol Buffers message containing one or more extensions, where the type parameter is expected to be the same type as the implementation class.
  2423. This interface is experiemental and is subject to change.
  2424. </summary>
  2425. </member>
  2426. <member name="M:Google.Protobuf.IExtendableMessage`1.GetExtension``1(Google.Protobuf.Extension{`0,``0})">
  2427. <summary>
  2428. Gets the value of the specified extension
  2429. </summary>
  2430. </member>
  2431. <member name="M:Google.Protobuf.IExtendableMessage`1.GetExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})">
  2432. <summary>
  2433. Gets the value of the specified repeated extension or null if the extension isn't registered in this set.
  2434. For a version of this method that never returns null, use <see cref="M:Google.Protobuf.IExtendableMessage`1.GetOrInitializeExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})"/>
  2435. </summary>
  2436. </member>
  2437. <member name="M:Google.Protobuf.IExtendableMessage`1.GetOrInitializeExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})">
  2438. <summary>
  2439. Gets the value of the specified repeated extension, registering it if it hasn't already been registered.
  2440. </summary>
  2441. </member>
  2442. <member name="M:Google.Protobuf.IExtendableMessage`1.SetExtension``1(Google.Protobuf.Extension{`0,``0},``0)">
  2443. <summary>
  2444. Sets the value of the specified extension
  2445. </summary>
  2446. </member>
  2447. <member name="M:Google.Protobuf.IExtendableMessage`1.HasExtension``1(Google.Protobuf.Extension{`0,``0})">
  2448. <summary>
  2449. Gets whether the value of the specified extension is set
  2450. </summary>
  2451. </member>
  2452. <member name="M:Google.Protobuf.IExtendableMessage`1.ClearExtension``1(Google.Protobuf.Extension{`0,``0})">
  2453. <summary>
  2454. Clears the value of the specified extension
  2455. </summary>
  2456. </member>
  2457. <member name="M:Google.Protobuf.IExtendableMessage`1.ClearExtension``1(Google.Protobuf.RepeatedExtension{`0,``0})">
  2458. <summary>
  2459. Clears the value of the specified repeated extension
  2460. </summary>
  2461. </member>
  2462. <member name="T:Google.Protobuf.IMessage">
  2463. <summary>
  2464. Interface for a Protocol Buffers message, supporting
  2465. basic operations required for serialization.
  2466. </summary>
  2467. </member>
  2468. <member name="M:Google.Protobuf.IMessage.MergeFrom(Google.Protobuf.CodedInputStream)">
  2469. <summary>
  2470. Merges the data from the specified coded input stream with the current message.
  2471. </summary>
  2472. <remarks>See the user guide for precise merge semantics.</remarks>
  2473. <param name="input"></param>
  2474. </member>
  2475. <member name="M:Google.Protobuf.IMessage.WriteTo(Google.Protobuf.CodedOutputStream)">
  2476. <summary>
  2477. Writes the data to the given coded output stream.
  2478. </summary>
  2479. <param name="output">Coded output stream to write the data to. Must not be null.</param>
  2480. </member>
  2481. <member name="M:Google.Protobuf.IMessage.CalculateSize">
  2482. <summary>
  2483. Calculates the size of this message in Protocol Buffer wire format, in bytes.
  2484. </summary>
  2485. <returns>The number of bytes required to write this message
  2486. to a coded output stream.</returns>
  2487. </member>
  2488. <member name="P:Google.Protobuf.IMessage.Descriptor">
  2489. <summary>
  2490. Descriptor for this message. All instances are expected to return the same descriptor,
  2491. and for generated types this will be an explicitly-implemented member, returning the
  2492. same value as the static property declared on the type.
  2493. </summary>
  2494. </member>
  2495. <member name="T:Google.Protobuf.IMessage`1">
  2496. <summary>
  2497. Generic interface for a Protocol Buffers message,
  2498. where the type parameter is expected to be the same type as
  2499. the implementation class.
  2500. </summary>
  2501. <typeparam name="T">The message type.</typeparam>
  2502. </member>
  2503. <member name="M:Google.Protobuf.IMessage`1.MergeFrom(`0)">
  2504. <summary>
  2505. Merges the given message into this one.
  2506. </summary>
  2507. <remarks>See the user guide for precise merge semantics.</remarks>
  2508. <param name="message">The message to merge with this one. Must not be null.</param>
  2509. </member>
  2510. <member name="T:Google.Protobuf.InvalidJsonException">
  2511. <summary>
  2512. Thrown when an attempt is made to parse invalid JSON, e.g. using
  2513. a non-string property key, or including a redundant comma. Parsing a protocol buffer
  2514. message represented in JSON using <see cref="T:Google.Protobuf.JsonParser"/> can throw both this
  2515. exception and <see cref="T:Google.Protobuf.InvalidProtocolBufferException"/> depending on the situation. This
  2516. exception is only thrown for "pure JSON" errors, whereas <c>InvalidProtocolBufferException</c>
  2517. is thrown when the JSON may be valid in and of itself, but cannot be parsed as a protocol buffer
  2518. message.
  2519. </summary>
  2520. </member>
  2521. <member name="T:Google.Protobuf.InvalidProtocolBufferException">
  2522. <summary>
  2523. Thrown when a protocol message being parsed is invalid in some way,
  2524. e.g. it contains a malformed varint or a negative byte length.
  2525. </summary>
  2526. </member>
  2527. <member name="M:Google.Protobuf.InvalidProtocolBufferException.InvalidTag">
  2528. <summary>
  2529. Creates an exception for an error condition of an invalid tag being encountered.
  2530. </summary>
  2531. </member>
  2532. <member name="T:Google.Protobuf.JsonFormatter">
  2533. <summary>
  2534. Reflection-based converter from messages to JSON.
  2535. </summary>
  2536. <remarks>
  2537. <para>
  2538. Instances of this class are thread-safe, with no mutable state.
  2539. </para>
  2540. <para>
  2541. This is a simple start to get JSON formatting working. As it's reflection-based,
  2542. it's not as quick as baking calls into generated messages - but is a simpler implementation.
  2543. (This code is generally not heavily optimized.)
  2544. </para>
  2545. </remarks>
  2546. </member>
  2547. <member name="P:Google.Protobuf.JsonFormatter.Default">
  2548. <summary>
  2549. Returns a formatter using the default settings.
  2550. </summary>
  2551. </member>
  2552. <member name="F:Google.Protobuf.JsonFormatter.CommonRepresentations">
  2553. <summary>
  2554. The JSON representation of the first 160 characters of Unicode.
  2555. Empty strings are replaced by the static constructor.
  2556. </summary>
  2557. </member>
  2558. <member name="M:Google.Protobuf.JsonFormatter.#ctor(Google.Protobuf.JsonFormatter.Settings)">
  2559. <summary>
  2560. Creates a new formatted with the given settings.
  2561. </summary>
  2562. <param name="settings">The settings.</param>
  2563. </member>
  2564. <member name="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage)">
  2565. <summary>
  2566. Formats the specified message as JSON.
  2567. </summary>
  2568. <param name="message">The message to format.</param>
  2569. <returns>The formatted message.</returns>
  2570. </member>
  2571. <member name="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage,System.IO.TextWriter)">
  2572. <summary>
  2573. Formats the specified message as JSON.
  2574. </summary>
  2575. <param name="message">The message to format.</param>
  2576. <param name="writer">The TextWriter to write the formatted message to.</param>
  2577. <returns>The formatted message.</returns>
  2578. </member>
  2579. <member name="M:Google.Protobuf.JsonFormatter.ToDiagnosticString(Google.Protobuf.IMessage)">
  2580. <summary>
  2581. Converts a message to JSON for diagnostic purposes with no extra context.
  2582. </summary>
  2583. <remarks>
  2584. <para>
  2585. This differs from calling <see cref="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage)"/> on the default JSON
  2586. formatter in its handling of <see cref="T:Google.Protobuf.WellKnownTypes.Any"/>. As no type registry is available
  2587. in <see cref="M:System.Object.ToString"/> calls, the normal way of resolving the type of
  2588. an <c>Any</c> message cannot be applied. Instead, a JSON property named <c>@value</c>
  2589. is included with the base64 data from the <see cref="P:Google.Protobuf.WellKnownTypes.Any.Value"/> property of the message.
  2590. </para>
  2591. <para>The value returned by this method is only designed to be used for diagnostic
  2592. purposes. It may not be parsable by <see cref="T:Google.Protobuf.JsonParser"/>, and may not be parsable
  2593. by other Protocol Buffer implementations.</para>
  2594. </remarks>
  2595. <param name="message">The message to format for diagnostic purposes.</param>
  2596. <returns>The diagnostic-only JSON representation of the message</returns>
  2597. </member>
  2598. <member name="M:Google.Protobuf.JsonFormatter.ShouldFormatFieldValue(Google.Protobuf.IMessage,Google.Protobuf.Reflection.FieldDescriptor,System.Object)">
  2599. <summary>
  2600. Determines whether or not a field value should be serialized according to the field,
  2601. its value in the message, and the settings of this formatter.
  2602. </summary>
  2603. </member>
  2604. <member name="M:Google.Protobuf.JsonFormatter.WriteValue(System.IO.TextWriter,System.Object)">
  2605. <summary>
  2606. Writes a single value to the given writer as JSON. Only types understood by
  2607. Protocol Buffers can be written in this way. This method is only exposed for
  2608. advanced use cases; most users should be using <see cref="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage)"/>
  2609. or <see cref="M:Google.Protobuf.JsonFormatter.Format(Google.Protobuf.IMessage,System.IO.TextWriter)"/>.
  2610. </summary>
  2611. <param name="writer">The writer to write the value to. Must not be null.</param>
  2612. <param name="value">The value to write. May be null.</param>
  2613. </member>
  2614. <member name="M:Google.Protobuf.JsonFormatter.WriteWellKnownTypeValue(System.IO.TextWriter,Google.Protobuf.Reflection.MessageDescriptor,System.Object)">
  2615. <summary>
  2616. Central interception point for well-known type formatting. Any well-known types which
  2617. don't need special handling can fall back to WriteMessage. We avoid assuming that the
  2618. values are using the embedded well-known types, in order to allow for dynamic messages
  2619. in the future.
  2620. </summary>
  2621. </member>
  2622. <member name="M:Google.Protobuf.JsonFormatter.WriteString(System.IO.TextWriter,System.String)">
  2623. <summary>
  2624. Writes a string (including leading and trailing double quotes) to a builder, escaping as required.
  2625. </summary>
  2626. <remarks>
  2627. Other than surrogate pair handling, this code is mostly taken from src/google/protobuf/util/internal/json_escaping.cc.
  2628. </remarks>
  2629. </member>
  2630. <member name="T:Google.Protobuf.JsonFormatter.Settings">
  2631. <summary>
  2632. Settings controlling JSON formatting.
  2633. </summary>
  2634. </member>
  2635. <member name="P:Google.Protobuf.JsonFormatter.Settings.Default">
  2636. <summary>
  2637. Default settings, as used by <see cref="P:Google.Protobuf.JsonFormatter.Default"/>
  2638. </summary>
  2639. </member>
  2640. <member name="P:Google.Protobuf.JsonFormatter.Settings.FormatDefaultValues">
  2641. <summary>
  2642. Whether fields which would otherwise not be included in the formatted data
  2643. should be formatted even when the value is not present, or has the default value.
  2644. This option only affects fields which don't support "presence" (e.g.
  2645. singular non-optional proto3 primitive fields).
  2646. </summary>
  2647. </member>
  2648. <member name="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry">
  2649. <summary>
  2650. The type registry used to format <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.
  2651. </summary>
  2652. </member>
  2653. <member name="P:Google.Protobuf.JsonFormatter.Settings.FormatEnumsAsIntegers">
  2654. <summary>
  2655. Whether to format enums as ints. Defaults to false.
  2656. </summary>
  2657. </member>
  2658. <member name="M:Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean)">
  2659. <summary>
  2660. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values
  2661. and an empty type registry.
  2662. </summary>
  2663. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2664. </member>
  2665. <member name="M:Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean,Google.Protobuf.Reflection.TypeRegistry)">
  2666. <summary>
  2667. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values
  2668. and type registry.
  2669. </summary>
  2670. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2671. <param name="typeRegistry">The <see cref="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.</param>
  2672. </member>
  2673. <member name="M:Google.Protobuf.JsonFormatter.Settings.#ctor(System.Boolean,Google.Protobuf.Reflection.TypeRegistry,System.Boolean)">
  2674. <summary>
  2675. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified parameters.
  2676. </summary>
  2677. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2678. <param name="typeRegistry">The <see cref="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages. TypeRegistry.Empty will be used if it is null.</param>
  2679. <param name="formatEnumsAsIntegers"><c>true</c> to format the enums as integers; <c>false</c> to format enums as enum names.</param>
  2680. </member>
  2681. <member name="M:Google.Protobuf.JsonFormatter.Settings.WithFormatDefaultValues(System.Boolean)">
  2682. <summary>
  2683. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified formatting of default values and the current settings.
  2684. </summary>
  2685. <param name="formatDefaultValues"><c>true</c> if default values (0, empty strings etc) should be formatted; <c>false</c> otherwise.</param>
  2686. </member>
  2687. <member name="M:Google.Protobuf.JsonFormatter.Settings.WithTypeRegistry(Google.Protobuf.Reflection.TypeRegistry)">
  2688. <summary>
  2689. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified type registry and the current settings.
  2690. </summary>
  2691. <param name="typeRegistry">The <see cref="P:Google.Protobuf.JsonFormatter.Settings.TypeRegistry"/> to use when formatting <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.</param>
  2692. </member>
  2693. <member name="M:Google.Protobuf.JsonFormatter.Settings.WithFormatEnumsAsIntegers(System.Boolean)">
  2694. <summary>
  2695. Creates a new <see cref="T:Google.Protobuf.JsonFormatter.Settings"/> object with the specified enums formatting option and the current settings.
  2696. </summary>
  2697. <param name="formatEnumsAsIntegers"><c>true</c> to format the enums as integers; <c>false</c> to format enums as enum names.</param>
  2698. </member>
  2699. <member name="T:Google.Protobuf.JsonParser">
  2700. <summary>
  2701. Reflection-based converter from JSON to messages.
  2702. </summary>
  2703. <remarks>
  2704. <para>
  2705. Instances of this class are thread-safe, with no mutable state.
  2706. </para>
  2707. <para>
  2708. This is a simple start to get JSON parsing working. As it's reflection-based,
  2709. it's not as quick as baking calls into generated messages - but is a simpler implementation.
  2710. (This code is generally not heavily optimized.)
  2711. </para>
  2712. </remarks>
  2713. </member>
  2714. <member name="P:Google.Protobuf.JsonParser.Default">
  2715. <summary>
  2716. Returns a formatter using the default settings.
  2717. </summary>
  2718. </member>
  2719. <member name="M:Google.Protobuf.JsonParser.#ctor(Google.Protobuf.JsonParser.Settings)">
  2720. <summary>
  2721. Creates a new formatted with the given settings.
  2722. </summary>
  2723. <param name="settings">The settings.</param>
  2724. </member>
  2725. <member name="M:Google.Protobuf.JsonParser.Merge(Google.Protobuf.IMessage,System.String)">
  2726. <summary>
  2727. Parses <paramref name="json"/> and merges the information into the given message.
  2728. </summary>
  2729. <param name="message">The message to merge the JSON information into.</param>
  2730. <param name="json">The JSON to parse.</param>
  2731. </member>
  2732. <member name="M:Google.Protobuf.JsonParser.Merge(Google.Protobuf.IMessage,System.IO.TextReader)">
  2733. <summary>
  2734. Parses JSON read from <paramref name="jsonReader"/> and merges the information into the given message.
  2735. </summary>
  2736. <param name="message">The message to merge the JSON information into.</param>
  2737. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2738. </member>
  2739. <member name="M:Google.Protobuf.JsonParser.Merge(Google.Protobuf.IMessage,Google.Protobuf.JsonTokenizer)">
  2740. <summary>
  2741. Merges the given message using data from the given tokenizer. In most cases, the next
  2742. token should be a "start object" token, but wrapper types and nullity can invalidate
  2743. that assumption. This is implemented as an LL(1) recursive descent parser over the stream
  2744. of tokens provided by the tokenizer. This token stream is assumed to be valid JSON, with the
  2745. tokenizer performing that validation - but not every token stream is valid "protobuf JSON".
  2746. </summary>
  2747. </member>
  2748. <member name="M:Google.Protobuf.JsonParser.Parse``1(System.String)">
  2749. <summary>
  2750. Parses <paramref name="json"/> into a new message.
  2751. </summary>
  2752. <typeparam name="T">The type of message to create.</typeparam>
  2753. <param name="json">The JSON to parse.</param>
  2754. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2755. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2756. </member>
  2757. <member name="M:Google.Protobuf.JsonParser.Parse``1(System.IO.TextReader)">
  2758. <summary>
  2759. Parses JSON read from <paramref name="jsonReader"/> into a new message.
  2760. </summary>
  2761. <typeparam name="T">The type of message to create.</typeparam>
  2762. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2763. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2764. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2765. </member>
  2766. <member name="M:Google.Protobuf.JsonParser.Parse(System.String,Google.Protobuf.Reflection.MessageDescriptor)">
  2767. <summary>
  2768. Parses <paramref name="json"/> into a new message.
  2769. </summary>
  2770. <param name="json">The JSON to parse.</param>
  2771. <param name="descriptor">Descriptor of message type to parse.</param>
  2772. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2773. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2774. </member>
  2775. <member name="M:Google.Protobuf.JsonParser.Parse(System.IO.TextReader,Google.Protobuf.Reflection.MessageDescriptor)">
  2776. <summary>
  2777. Parses JSON read from <paramref name="jsonReader"/> into a new message.
  2778. </summary>
  2779. <param name="jsonReader">Reader providing the JSON to parse.</param>
  2780. <param name="descriptor">Descriptor of message type to parse.</param>
  2781. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  2782. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  2783. </member>
  2784. <member name="M:Google.Protobuf.JsonParser.NewMessageForField(Google.Protobuf.Reflection.FieldDescriptor)">
  2785. <summary>
  2786. Creates a new instance of the message type for the given field.
  2787. </summary>
  2788. </member>
  2789. <member name="M:Google.Protobuf.JsonParser.ValidateInfinityAndNan(System.String,System.Boolean,System.Boolean,System.Boolean)">
  2790. <summary>
  2791. Checks that any infinite/NaN values originated from the correct text.
  2792. This corrects the lenient whitespace handling of double.Parse/float.Parse, as well as the
  2793. way that Mono parses out-of-range values as infinity.
  2794. </summary>
  2795. </member>
  2796. <member name="T:Google.Protobuf.JsonParser.Settings">
  2797. <summary>
  2798. Settings controlling JSON parsing.
  2799. </summary>
  2800. </member>
  2801. <member name="P:Google.Protobuf.JsonParser.Settings.Default">
  2802. <summary>
  2803. Default settings, as used by <see cref="P:Google.Protobuf.JsonParser.Default"/>. This has the same default
  2804. recursion limit as <see cref="T:Google.Protobuf.CodedInputStream"/>, and an empty type registry.
  2805. </summary>
  2806. </member>
  2807. <member name="P:Google.Protobuf.JsonParser.Settings.RecursionLimit">
  2808. <summary>
  2809. The maximum depth of messages to parse. Note that this limit only applies to parsing
  2810. messages, not collections - so a message within a collection within a message only counts as
  2811. depth 2, not 3.
  2812. </summary>
  2813. </member>
  2814. <member name="P:Google.Protobuf.JsonParser.Settings.TypeRegistry">
  2815. <summary>
  2816. The type registry used to parse <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages.
  2817. </summary>
  2818. </member>
  2819. <member name="P:Google.Protobuf.JsonParser.Settings.IgnoreUnknownFields">
  2820. <summary>
  2821. Whether the parser should ignore unknown fields (<c>true</c>) or throw an exception when
  2822. they are encountered (<c>false</c>).
  2823. </summary>
  2824. </member>
  2825. <member name="M:Google.Protobuf.JsonParser.Settings.#ctor(System.Int32)">
  2826. <summary>
  2827. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object with the specified recursion limit.
  2828. </summary>
  2829. <param name="recursionLimit">The maximum depth of messages to parse</param>
  2830. </member>
  2831. <member name="M:Google.Protobuf.JsonParser.Settings.#ctor(System.Int32,Google.Protobuf.Reflection.TypeRegistry)">
  2832. <summary>
  2833. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object with the specified recursion limit and type registry.
  2834. </summary>
  2835. <param name="recursionLimit">The maximum depth of messages to parse</param>
  2836. <param name="typeRegistry">The type registry used to parse <see cref="T:Google.Protobuf.WellKnownTypes.Any"/> messages</param>
  2837. </member>
  2838. <member name="M:Google.Protobuf.JsonParser.Settings.WithIgnoreUnknownFields(System.Boolean)">
  2839. <summary>
  2840. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object set to either ignore unknown fields, or throw an exception
  2841. when unknown fields are encountered.
  2842. </summary>
  2843. <param name="ignoreUnknownFields"><c>true</c> if unknown fields should be ignored when parsing; <c>false</c> to throw an exception.</param>
  2844. </member>
  2845. <member name="M:Google.Protobuf.JsonParser.Settings.WithRecursionLimit(System.Int32)">
  2846. <summary>
  2847. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object based on this one, but with the specified recursion limit.
  2848. </summary>
  2849. <param name="recursionLimit">The new recursion limit.</param>
  2850. </member>
  2851. <member name="M:Google.Protobuf.JsonParser.Settings.WithTypeRegistry(Google.Protobuf.Reflection.TypeRegistry)">
  2852. <summary>
  2853. Creates a new <see cref="T:Google.Protobuf.JsonParser.Settings"/> object based on this one, but with the specified type registry.
  2854. </summary>
  2855. <param name="typeRegistry">The new type registry. Must not be null.</param>
  2856. </member>
  2857. <member name="T:Google.Protobuf.JsonTokenizer">
  2858. <summary>
  2859. Simple but strict JSON tokenizer, rigidly following RFC 7159.
  2860. </summary>
  2861. <remarks>
  2862. <para>
  2863. This tokenizer is stateful, and only returns "useful" tokens - names, values etc.
  2864. It does not create tokens for the separator between names and values, or for the comma
  2865. between values. It validates the token stream as it goes - so callers can assume that the
  2866. tokens it produces are appropriate. For example, it would never produce "start object, end array."
  2867. </para>
  2868. <para>Implementation details: the base class handles single token push-back and </para>
  2869. <para>Not thread-safe.</para>
  2870. </remarks>
  2871. </member>
  2872. <member name="M:Google.Protobuf.JsonTokenizer.FromTextReader(System.IO.TextReader)">
  2873. <summary>
  2874. Creates a tokenizer that reads from the given text reader.
  2875. </summary>
  2876. </member>
  2877. <member name="M:Google.Protobuf.JsonTokenizer.FromReplayedTokens(System.Collections.Generic.IList{Google.Protobuf.JsonToken},Google.Protobuf.JsonTokenizer)">
  2878. <summary>
  2879. Creates a tokenizer that first replays the given list of tokens, then continues reading
  2880. from another tokenizer. Note that if the returned tokenizer is "pushed back", that does not push back
  2881. on the continuation tokenizer, or vice versa. Care should be taken when using this method - it was
  2882. created for the sake of Any parsing.
  2883. </summary>
  2884. </member>
  2885. <member name="P:Google.Protobuf.JsonTokenizer.ObjectDepth">
  2886. <summary>
  2887. Returns the depth of the stack, purely in objects (not collections).
  2888. Informally, this is the number of remaining unclosed '{' characters we have.
  2889. </summary>
  2890. </member>
  2891. <member name="M:Google.Protobuf.JsonTokenizer.Next">
  2892. <summary>
  2893. Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream,
  2894. after which point <c>Next()</c> should not be called again.
  2895. </summary>
  2896. <remarks>This implementation provides single-token buffering, and calls <see cref="M:Google.Protobuf.JsonTokenizer.NextImpl"/> if there is no buffered token.</remarks>
  2897. <returns>The next token in the stream. This is never null.</returns>
  2898. <exception cref="T:System.InvalidOperationException">This method is called after an EndDocument token has been returned</exception>
  2899. <exception cref="T:Google.Protobuf.InvalidJsonException">The input text does not comply with RFC 7159</exception>
  2900. </member>
  2901. <member name="M:Google.Protobuf.JsonTokenizer.NextImpl">
  2902. <summary>
  2903. Returns the next JSON token in the stream, when requested by the base class. (The <see cref="M:Google.Protobuf.JsonTokenizer.Next"/> method delegates
  2904. to this if it doesn't have a buffered token.)
  2905. </summary>
  2906. <exception cref="T:System.InvalidOperationException">This method is called after an EndDocument token has been returned</exception>
  2907. <exception cref="T:Google.Protobuf.InvalidJsonException">The input text does not comply with RFC 7159</exception>
  2908. </member>
  2909. <member name="M:Google.Protobuf.JsonTokenizer.SkipValue">
  2910. <summary>
  2911. Skips the value we're about to read. This must only be called immediately after reading a property name.
  2912. If the value is an object or an array, the complete object/array is skipped.
  2913. </summary>
  2914. </member>
  2915. <member name="T:Google.Protobuf.JsonTokenizer.JsonReplayTokenizer">
  2916. <summary>
  2917. Tokenizer which first exhausts a list of tokens, then consults another tokenizer.
  2918. </summary>
  2919. </member>
  2920. <member name="T:Google.Protobuf.JsonTokenizer.JsonTextTokenizer">
  2921. <summary>
  2922. Tokenizer which does all the *real* work of parsing JSON.
  2923. </summary>
  2924. </member>
  2925. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.NextImpl">
  2926. <remarks>
  2927. This method essentially just loops through characters skipping whitespace, validating and
  2928. changing state (e.g. from ObjectBeforeColon to ObjectAfterColon)
  2929. until it reaches something which will be a genuine token (e.g. a start object, or a value) at which point
  2930. it returns the token. Although the method is large, it would be relatively hard to break down further... most
  2931. of it is the large switch statement, which sometimes returns and sometimes doesn't.
  2932. </remarks>
  2933. </member>
  2934. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadString">
  2935. <summary>
  2936. Reads a string token. It is assumed that the opening " has already been read.
  2937. </summary>
  2938. </member>
  2939. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadEscapedCharacter">
  2940. <summary>
  2941. Reads an escaped character. It is assumed that the leading backslash has already been read.
  2942. </summary>
  2943. </member>
  2944. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ReadUnicodeEscape">
  2945. <summary>
  2946. Reads an escaped Unicode 4-nybble hex sequence. It is assumed that the leading \u has already been read.
  2947. </summary>
  2948. </member>
  2949. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ConsumeLiteral(System.String)">
  2950. <summary>
  2951. Consumes a text-only literal, throwing an exception if the read text doesn't match it.
  2952. It is assumed that the first letter of the literal has already been read.
  2953. </summary>
  2954. </member>
  2955. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.ValidateAndModifyStateForValue(System.String)">
  2956. <summary>
  2957. Validates that we're in a valid state to read a value (using the given error prefix if necessary)
  2958. and changes the state to the appropriate one, e.g. ObjectAfterColon to ObjectAfterProperty.
  2959. </summary>
  2960. </member>
  2961. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PopContainer">
  2962. <summary>
  2963. Pops the top-most container, and sets the state to the appropriate one for the end of a value
  2964. in the parent container.
  2965. </summary>
  2966. </member>
  2967. <member name="T:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State">
  2968. <summary>
  2969. Possible states of the tokenizer.
  2970. </summary>
  2971. <remarks>
  2972. <para>This is a flags enum purely so we can simply and efficiently represent a set of valid states
  2973. for checking.</para>
  2974. <para>
  2975. Each is documented with an example,
  2976. where ^ represents the current position within the text stream. The examples all use string values,
  2977. but could be any value, including nested objects/arrays.
  2978. The complete state of the tokenizer also includes a stack to indicate the contexts (arrays/objects).
  2979. Any additional notional state of "AfterValue" indicates that a value has been completed, at which
  2980. point there's an immediate transition to ExpectedEndOfDocument, ObjectAfterProperty or ArrayAfterValue.
  2981. </para>
  2982. <para>
  2983. These states were derived manually by reading RFC 7159 carefully.
  2984. </para>
  2985. </remarks>
  2986. </member>
  2987. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.StartOfDocument">
  2988. <summary>
  2989. ^ { "foo": "bar" }
  2990. Before the value in a document. Next states: ObjectStart, ArrayStart, "AfterValue"
  2991. </summary>
  2992. </member>
  2993. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ExpectedEndOfDocument">
  2994. <summary>
  2995. { "foo": "bar" } ^
  2996. After the value in a document. Next states: ReaderExhausted
  2997. </summary>
  2998. </member>
  2999. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ReaderExhausted">
  3000. <summary>
  3001. { "foo": "bar" } ^ (and already read to the end of the reader)
  3002. Terminal state.
  3003. </summary>
  3004. </member>
  3005. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectStart">
  3006. <summary>
  3007. { ^ "foo": "bar" }
  3008. Before the *first* property in an object.
  3009. Next states:
  3010. "AfterValue" (empty object)
  3011. ObjectBeforeColon (read a name)
  3012. </summary>
  3013. </member>
  3014. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectBeforeColon">
  3015. <summary>
  3016. { "foo" ^ : "bar", "x": "y" }
  3017. Next state: ObjectAfterColon
  3018. </summary>
  3019. </member>
  3020. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterColon">
  3021. <summary>
  3022. { "foo" : ^ "bar", "x": "y" }
  3023. Before any property other than the first in an object.
  3024. (Equivalently: after any property in an object)
  3025. Next states:
  3026. "AfterValue" (value is simple)
  3027. ObjectStart (value is object)
  3028. ArrayStart (value is array)
  3029. </summary>
  3030. </member>
  3031. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterProperty">
  3032. <summary>
  3033. { "foo" : "bar" ^ , "x" : "y" }
  3034. At the end of a property, so expecting either a comma or end-of-object
  3035. Next states: ObjectAfterComma or "AfterValue"
  3036. </summary>
  3037. </member>
  3038. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ObjectAfterComma">
  3039. <summary>
  3040. { "foo":"bar", ^ "x":"y" }
  3041. Read the comma after the previous property, so expecting another property.
  3042. This is like ObjectStart, but closing brace isn't valid here
  3043. Next state: ObjectBeforeColon.
  3044. </summary>
  3045. </member>
  3046. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayStart">
  3047. <summary>
  3048. [ ^ "foo", "bar" ]
  3049. Before the *first* value in an array.
  3050. Next states:
  3051. "AfterValue" (read a value)
  3052. "AfterValue" (end of array; will pop stack)
  3053. </summary>
  3054. </member>
  3055. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayAfterValue">
  3056. <summary>
  3057. [ "foo" ^ , "bar" ]
  3058. After any value in an array, so expecting either a comma or end-of-array
  3059. Next states: ArrayAfterComma or "AfterValue"
  3060. </summary>
  3061. </member>
  3062. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.State.ArrayAfterComma">
  3063. <summary>
  3064. [ "foo", ^ "bar" ]
  3065. After a comma in an array, so there *must* be another value (simple or complex).
  3066. Next states: "AfterValue" (simple value), StartObject, StartArray
  3067. </summary>
  3068. </member>
  3069. <member name="T:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader">
  3070. <summary>
  3071. Wrapper around a text reader allowing small amounts of buffering and location handling.
  3072. </summary>
  3073. </member>
  3074. <member name="F:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.nextChar">
  3075. <summary>
  3076. The buffered next character, if we have one.
  3077. </summary>
  3078. </member>
  3079. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.Read">
  3080. <summary>
  3081. Returns the next character in the stream, or null if we have reached the end.
  3082. </summary>
  3083. <returns></returns>
  3084. </member>
  3085. <member name="M:Google.Protobuf.JsonTokenizer.JsonTextTokenizer.PushBackReader.CreateException(System.String)">
  3086. <summary>
  3087. Creates a new exception appropriate for the current state of the reader.
  3088. </summary>
  3089. </member>
  3090. <member name="T:Google.Protobuf.LimitedInputStream">
  3091. <summary>
  3092. Stream implementation which proxies another stream, only allowing a certain amount
  3093. of data to be read. Note that this is only used to read delimited streams, so it
  3094. doesn't attempt to implement everything.
  3095. </summary>
  3096. </member>
  3097. <member name="T:Google.Protobuf.MessageExtensions">
  3098. <summary>
  3099. Extension methods on <see cref="T:Google.Protobuf.IMessage"/> and <see cref="T:Google.Protobuf.IMessage`1"/>.
  3100. </summary>
  3101. </member>
  3102. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,System.Byte[])">
  3103. <summary>
  3104. Merges data from the given byte array into an existing message.
  3105. </summary>
  3106. <param name="message">The message to merge the data into.</param>
  3107. <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
  3108. </member>
  3109. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,System.Byte[],System.Int32,System.Int32)">
  3110. <summary>
  3111. Merges data from the given byte array slice into an existing message.
  3112. </summary>
  3113. <param name="message">The message to merge the data into.</param>
  3114. <param name="data">The data containing the slice to merge, which must be protobuf-encoded binary data.</param>
  3115. <param name="offset">The offset of the slice to merge.</param>
  3116. <param name="length">The length of the slice to merge.</param>
  3117. </member>
  3118. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,Google.Protobuf.ByteString)">
  3119. <summary>
  3120. Merges data from the given byte string into an existing message.
  3121. </summary>
  3122. <param name="message">The message to merge the data into.</param>
  3123. <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
  3124. </member>
  3125. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,System.IO.Stream)">
  3126. <summary>
  3127. Merges data from the given stream into an existing message.
  3128. </summary>
  3129. <param name="message">The message to merge the data into.</param>
  3130. <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary data.</param>
  3131. </member>
  3132. <member name="M:Google.Protobuf.MessageExtensions.MergeFrom(Google.Protobuf.IMessage,System.ReadOnlySpan{System.Byte})">
  3133. <summary>
  3134. Merges data from the given span into an existing message.
  3135. </summary>
  3136. <param name="message">The message to merge the data into.</param>
  3137. <param name="span">Span containing the data to merge, which must be protobuf-encoded binary data.</param>
  3138. </member>
  3139. <member name="M:Google.Protobuf.MessageExtensions.MergeDelimitedFrom(Google.Protobuf.IMessage,System.IO.Stream)">
  3140. <summary>
  3141. Merges length-delimited data from the given stream into an existing message.
  3142. </summary>
  3143. <remarks>
  3144. The stream is expected to contain a length and then the data. Only the amount of data
  3145. specified by the length will be consumed.
  3146. </remarks>
  3147. <param name="message">The message to merge the data into.</param>
  3148. <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary data.</param>
  3149. </member>
  3150. <member name="M:Google.Protobuf.MessageExtensions.ToByteArray(Google.Protobuf.IMessage)">
  3151. <summary>
  3152. Converts the given message into a byte array in protobuf encoding.
  3153. </summary>
  3154. <param name="message">The message to convert.</param>
  3155. <returns>The message data as a byte array.</returns>
  3156. </member>
  3157. <member name="M:Google.Protobuf.MessageExtensions.WriteTo(Google.Protobuf.IMessage,System.IO.Stream)">
  3158. <summary>
  3159. Writes the given message data to the given stream in protobuf encoding.
  3160. </summary>
  3161. <param name="message">The message to write to the stream.</param>
  3162. <param name="output">The stream to write to.</param>
  3163. </member>
  3164. <member name="M:Google.Protobuf.MessageExtensions.WriteDelimitedTo(Google.Protobuf.IMessage,System.IO.Stream)">
  3165. <summary>
  3166. Writes the length and then data of the given message to a stream.
  3167. </summary>
  3168. <param name="message">The message to write.</param>
  3169. <param name="output">The output stream to write to.</param>
  3170. </member>
  3171. <member name="M:Google.Protobuf.MessageExtensions.ToByteString(Google.Protobuf.IMessage)">
  3172. <summary>
  3173. Converts the given message into a byte string in protobuf encoding.
  3174. </summary>
  3175. <param name="message">The message to convert.</param>
  3176. <returns>The message data as a byte string.</returns>
  3177. </member>
  3178. <member name="M:Google.Protobuf.MessageExtensions.WriteTo(Google.Protobuf.IMessage,System.Buffers.IBufferWriter{System.Byte})">
  3179. <summary>
  3180. Writes the given message data to the given buffer writer in protobuf encoding.
  3181. </summary>
  3182. <param name="message">The message to write to the stream.</param>
  3183. <param name="output">The stream to write to.</param>
  3184. </member>
  3185. <member name="M:Google.Protobuf.MessageExtensions.WriteTo(Google.Protobuf.IMessage,System.Span{System.Byte})">
  3186. <summary>
  3187. Writes the given message data to the given span in protobuf encoding.
  3188. The size of the destination span needs to fit the serialized size
  3189. of the message exactly, otherwise an exception is thrown.
  3190. </summary>
  3191. <param name="message">The message to write to the stream.</param>
  3192. <param name="output">The span to write to. Size must match size of the message exactly.</param>
  3193. </member>
  3194. <member name="M:Google.Protobuf.MessageExtensions.IsInitialized(Google.Protobuf.IMessage)">
  3195. <summary>
  3196. Checks if all required fields in a message have values set. For proto3 messages, this returns true
  3197. </summary>
  3198. </member>
  3199. <member name="T:Google.Protobuf.MessageParser">
  3200. <summary>
  3201. A general message parser, typically used by reflection-based code as all the methods
  3202. return simple <see cref="T:Google.Protobuf.IMessage"/>.
  3203. </summary>
  3204. </member>
  3205. <member name="M:Google.Protobuf.MessageParser.CreateTemplate">
  3206. <summary>
  3207. Creates a template instance ready for population.
  3208. </summary>
  3209. <returns>An empty message.</returns>
  3210. </member>
  3211. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.Byte[])">
  3212. <summary>
  3213. Parses a message from a byte array.
  3214. </summary>
  3215. <param name="data">The byte array containing the message. Must not be null.</param>
  3216. <returns>The newly parsed message.</returns>
  3217. </member>
  3218. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.Byte[],System.Int32,System.Int32)">
  3219. <summary>
  3220. Parses a message from a byte array slice.
  3221. </summary>
  3222. <param name="data">The byte array containing the message. Must not be null.</param>
  3223. <param name="offset">The offset of the slice to parse.</param>
  3224. <param name="length">The length of the slice to parse.</param>
  3225. <returns>The newly parsed message.</returns>
  3226. </member>
  3227. <member name="M:Google.Protobuf.MessageParser.ParseFrom(Google.Protobuf.ByteString)">
  3228. <summary>
  3229. Parses a message from the given byte string.
  3230. </summary>
  3231. <param name="data">The data to parse.</param>
  3232. <returns>The parsed message.</returns>
  3233. </member>
  3234. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.IO.Stream)">
  3235. <summary>
  3236. Parses a message from the given stream.
  3237. </summary>
  3238. <param name="input">The stream to parse.</param>
  3239. <returns>The parsed message.</returns>
  3240. </member>
  3241. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.Buffers.ReadOnlySequence{System.Byte})">
  3242. <summary>
  3243. Parses a message from the given sequence.
  3244. </summary>
  3245. <param name="data">The data to parse.</param>
  3246. <returns>The parsed message.</returns>
  3247. </member>
  3248. <member name="M:Google.Protobuf.MessageParser.ParseFrom(System.ReadOnlySpan{System.Byte})">
  3249. <summary>
  3250. Parses a message from the given span.
  3251. </summary>
  3252. <param name="data">The data to parse.</param>
  3253. <returns>The parsed message.</returns>
  3254. </member>
  3255. <member name="M:Google.Protobuf.MessageParser.ParseDelimitedFrom(System.IO.Stream)">
  3256. <summary>
  3257. Parses a length-delimited message from the given stream.
  3258. </summary>
  3259. <remarks>
  3260. The stream is expected to contain a length and then the data. Only the amount of data
  3261. specified by the length will be consumed.
  3262. </remarks>
  3263. <param name="input">The stream to parse.</param>
  3264. <returns>The parsed message.</returns>
  3265. </member>
  3266. <member name="M:Google.Protobuf.MessageParser.ParseFrom(Google.Protobuf.CodedInputStream)">
  3267. <summary>
  3268. Parses a message from the given coded input stream.
  3269. </summary>
  3270. <param name="input">The stream to parse.</param>
  3271. <returns>The parsed message.</returns>
  3272. </member>
  3273. <member name="M:Google.Protobuf.MessageParser.ParseJson(System.String)">
  3274. <summary>
  3275. Parses a message from the given JSON.
  3276. </summary>
  3277. <param name="json">The JSON to parse.</param>
  3278. <returns>The parsed message.</returns>
  3279. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  3280. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  3281. </member>
  3282. <member name="M:Google.Protobuf.MessageParser.WithDiscardUnknownFields(System.Boolean)">
  3283. <summary>
  3284. Creates a new message parser which optionally discards unknown fields when parsing.
  3285. </summary>
  3286. <param name="discardUnknownFields">Whether or not to discard unknown fields when parsing.</param>
  3287. <returns>A newly configured message parser.</returns>
  3288. </member>
  3289. <member name="M:Google.Protobuf.MessageParser.WithExtensionRegistry(Google.Protobuf.ExtensionRegistry)">
  3290. <summary>
  3291. Creates a new message parser which registers extensions from the specified registry upon creating the message instance
  3292. </summary>
  3293. <param name="registry">The extensions to register</param>
  3294. <returns>A newly configured message parser.</returns>
  3295. </member>
  3296. <member name="T:Google.Protobuf.MessageParser`1">
  3297. <summary>
  3298. A parser for a specific message type.
  3299. </summary>
  3300. <remarks>
  3301. <p>
  3302. This delegates most behavior to the
  3303. <see cref="M:Google.Protobuf.IMessage.MergeFrom(Google.Protobuf.CodedInputStream)"/> implementation within the original type, but
  3304. provides convenient overloads to parse from a variety of sources.
  3305. </p>
  3306. <p>
  3307. Most applications will never need to create their own instances of this type;
  3308. instead, use the static <c>Parser</c> property of a generated message type to obtain a
  3309. parser for that type.
  3310. </p>
  3311. </remarks>
  3312. <typeparam name="T">The type of message to be parsed.</typeparam>
  3313. </member>
  3314. <member name="M:Google.Protobuf.MessageParser`1.#ctor(System.Func{`0})">
  3315. <summary>
  3316. Creates a new parser.
  3317. </summary>
  3318. <remarks>
  3319. The factory method is effectively an optimization over using a generic constraint
  3320. to require a parameterless constructor: delegates are significantly faster to execute.
  3321. </remarks>
  3322. <param name="factory">Function to invoke when a new, empty message is required.</param>
  3323. </member>
  3324. <member name="M:Google.Protobuf.MessageParser`1.CreateTemplate">
  3325. <summary>
  3326. Creates a template instance ready for population.
  3327. </summary>
  3328. <returns>An empty message.</returns>
  3329. </member>
  3330. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.Byte[])">
  3331. <summary>
  3332. Parses a message from a byte array.
  3333. </summary>
  3334. <param name="data">The byte array containing the message. Must not be null.</param>
  3335. <returns>The newly parsed message.</returns>
  3336. </member>
  3337. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.Byte[],System.Int32,System.Int32)">
  3338. <summary>
  3339. Parses a message from a byte array slice.
  3340. </summary>
  3341. <param name="data">The byte array containing the message. Must not be null.</param>
  3342. <param name="offset">The offset of the slice to parse.</param>
  3343. <param name="length">The length of the slice to parse.</param>
  3344. <returns>The newly parsed message.</returns>
  3345. </member>
  3346. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(Google.Protobuf.ByteString)">
  3347. <summary>
  3348. Parses a message from the given byte string.
  3349. </summary>
  3350. <param name="data">The data to parse.</param>
  3351. <returns>The parsed message.</returns>
  3352. </member>
  3353. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.IO.Stream)">
  3354. <summary>
  3355. Parses a message from the given stream.
  3356. </summary>
  3357. <param name="input">The stream to parse.</param>
  3358. <returns>The parsed message.</returns>
  3359. </member>
  3360. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.Buffers.ReadOnlySequence{System.Byte})">
  3361. <summary>
  3362. Parses a message from the given sequence.
  3363. </summary>
  3364. <param name="data">The data to parse.</param>
  3365. <returns>The parsed message.</returns>
  3366. </member>
  3367. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(System.ReadOnlySpan{System.Byte})">
  3368. <summary>
  3369. Parses a message from the given span.
  3370. </summary>
  3371. <param name="data">The data to parse.</param>
  3372. <returns>The parsed message.</returns>
  3373. </member>
  3374. <member name="M:Google.Protobuf.MessageParser`1.ParseDelimitedFrom(System.IO.Stream)">
  3375. <summary>
  3376. Parses a length-delimited message from the given stream.
  3377. </summary>
  3378. <remarks>
  3379. The stream is expected to contain a length and then the data. Only the amount of data
  3380. specified by the length will be consumed.
  3381. </remarks>
  3382. <param name="input">The stream to parse.</param>
  3383. <returns>The parsed message.</returns>
  3384. </member>
  3385. <member name="M:Google.Protobuf.MessageParser`1.ParseFrom(Google.Protobuf.CodedInputStream)">
  3386. <summary>
  3387. Parses a message from the given coded input stream.
  3388. </summary>
  3389. <param name="input">The stream to parse.</param>
  3390. <returns>The parsed message.</returns>
  3391. </member>
  3392. <member name="M:Google.Protobuf.MessageParser`1.ParseJson(System.String)">
  3393. <summary>
  3394. Parses a message from the given JSON.
  3395. </summary>
  3396. <param name="json">The JSON to parse.</param>
  3397. <returns>The parsed message.</returns>
  3398. <exception cref="T:Google.Protobuf.InvalidJsonException">The JSON does not comply with RFC 7159</exception>
  3399. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The JSON does not represent a Protocol Buffers message correctly</exception>
  3400. </member>
  3401. <member name="M:Google.Protobuf.MessageParser`1.WithDiscardUnknownFields(System.Boolean)">
  3402. <summary>
  3403. Creates a new message parser which optionally discards unknown fields when parsing.
  3404. </summary>
  3405. <param name="discardUnknownFields">Whether or not to discard unknown fields when parsing.</param>
  3406. <returns>A newly configured message parser.</returns>
  3407. </member>
  3408. <member name="M:Google.Protobuf.MessageParser`1.WithExtensionRegistry(Google.Protobuf.ExtensionRegistry)">
  3409. <summary>
  3410. Creates a new message parser which registers extensions from the specified registry upon creating the message instance
  3411. </summary>
  3412. <param name="registry">The extensions to register</param>
  3413. <returns>A newly configured message parser.</returns>
  3414. </member>
  3415. <member name="T:Google.Protobuf.ObjectIntPair`1">
  3416. <summary>
  3417. Struct used to hold the keys for the fieldByNumber table in DescriptorPool and the keys for the
  3418. extensionByNumber table in ExtensionRegistry.
  3419. </summary>
  3420. </member>
  3421. <member name="T:Google.Protobuf.ParseContext">
  3422. <summary>
  3423. An opaque struct that represents the current parsing state and is passed along
  3424. as the parsing proceeds.
  3425. All the public methods are intended to be invoked only by the generated code,
  3426. users should never invoke them directly.
  3427. </summary>
  3428. </member>
  3429. <member name="M:Google.Protobuf.ParseContext.Initialize(System.ReadOnlySpan{System.Byte},Google.Protobuf.ParseContext@)">
  3430. <summary>
  3431. Initialize a <see cref="T:Google.Protobuf.ParseContext"/>, building all <see cref="T:Google.Protobuf.ParserInternalState"/> from defaults and
  3432. the given <paramref name="buffer"/>.
  3433. </summary>
  3434. </member>
  3435. <member name="M:Google.Protobuf.ParseContext.Initialize(System.ReadOnlySpan{System.Byte},Google.Protobuf.ParserInternalState@,Google.Protobuf.ParseContext@)">
  3436. <summary>
  3437. Initialize a <see cref="T:Google.Protobuf.ParseContext"/> using existing <see cref="T:Google.Protobuf.ParserInternalState"/>, e.g. from <see cref="T:Google.Protobuf.CodedInputStream"/>.
  3438. </summary>
  3439. </member>
  3440. <member name="M:Google.Protobuf.ParseContext.Initialize(Google.Protobuf.CodedInputStream,Google.Protobuf.ParseContext@)">
  3441. <summary>
  3442. Creates a ParseContext instance from CodedInputStream.
  3443. WARNING: internally this copies the CodedInputStream's state, so after done with the ParseContext,
  3444. the CodedInputStream's state needs to be updated.
  3445. </summary>
  3446. </member>
  3447. <member name="P:Google.Protobuf.ParseContext.LastTag">
  3448. <summary>
  3449. Returns the last tag read, or 0 if no tags have been read or we've read beyond
  3450. the end of the input.
  3451. </summary>
  3452. </member>
  3453. <member name="P:Google.Protobuf.ParseContext.DiscardUnknownFields">
  3454. <summary>
  3455. Internal-only property; when set to true, unknown fields will be discarded while parsing.
  3456. </summary>
  3457. </member>
  3458. <member name="P:Google.Protobuf.ParseContext.ExtensionRegistry">
  3459. <summary>
  3460. Internal-only property; provides extension identifiers to compatible messages while parsing.
  3461. </summary>
  3462. </member>
  3463. <member name="M:Google.Protobuf.ParseContext.ReadTag">
  3464. <summary>
  3465. Reads a field tag, returning the tag of 0 for "end of input".
  3466. </summary>
  3467. <remarks>
  3468. If this method returns 0, it doesn't necessarily mean the end of all
  3469. the data in this CodedInputReader; it may be the end of the logical input
  3470. for an embedded message, for example.
  3471. </remarks>
  3472. <returns>The next field tag, or 0 for end of input. (0 is never a valid tag.)</returns>
  3473. </member>
  3474. <member name="M:Google.Protobuf.ParseContext.ReadDouble">
  3475. <summary>
  3476. Reads a double field from the input.
  3477. </summary>
  3478. </member>
  3479. <member name="M:Google.Protobuf.ParseContext.ReadFloat">
  3480. <summary>
  3481. Reads a float field from the input.
  3482. </summary>
  3483. </member>
  3484. <member name="M:Google.Protobuf.ParseContext.ReadUInt64">
  3485. <summary>
  3486. Reads a uint64 field from the input.
  3487. </summary>
  3488. </member>
  3489. <member name="M:Google.Protobuf.ParseContext.ReadInt64">
  3490. <summary>
  3491. Reads an int64 field from the input.
  3492. </summary>
  3493. </member>
  3494. <member name="M:Google.Protobuf.ParseContext.ReadInt32">
  3495. <summary>
  3496. Reads an int32 field from the input.
  3497. </summary>
  3498. </member>
  3499. <member name="M:Google.Protobuf.ParseContext.ReadFixed64">
  3500. <summary>
  3501. Reads a fixed64 field from the input.
  3502. </summary>
  3503. </member>
  3504. <member name="M:Google.Protobuf.ParseContext.ReadFixed32">
  3505. <summary>
  3506. Reads a fixed32 field from the input.
  3507. </summary>
  3508. </member>
  3509. <member name="M:Google.Protobuf.ParseContext.ReadBool">
  3510. <summary>
  3511. Reads a bool field from the input.
  3512. </summary>
  3513. </member>
  3514. <member name="M:Google.Protobuf.ParseContext.ReadString">
  3515. <summary>
  3516. Reads a string field from the input.
  3517. </summary>
  3518. </member>
  3519. <member name="M:Google.Protobuf.ParseContext.ReadMessage(Google.Protobuf.IMessage)">
  3520. <summary>
  3521. Reads an embedded message field value from the input.
  3522. </summary>
  3523. </member>
  3524. <member name="M:Google.Protobuf.ParseContext.ReadGroup(Google.Protobuf.IMessage)">
  3525. <summary>
  3526. Reads an embedded group field from the input.
  3527. </summary>
  3528. </member>
  3529. <member name="M:Google.Protobuf.ParseContext.ReadBytes">
  3530. <summary>
  3531. Reads a bytes field value from the input.
  3532. </summary>
  3533. </member>
  3534. <member name="M:Google.Protobuf.ParseContext.ReadUInt32">
  3535. <summary>
  3536. Reads a uint32 field value from the input.
  3537. </summary>
  3538. </member>
  3539. <member name="M:Google.Protobuf.ParseContext.ReadEnum">
  3540. <summary>
  3541. Reads an enum field value from the input.
  3542. </summary>
  3543. </member>
  3544. <member name="M:Google.Protobuf.ParseContext.ReadSFixed32">
  3545. <summary>
  3546. Reads an sfixed32 field value from the input.
  3547. </summary>
  3548. </member>
  3549. <member name="M:Google.Protobuf.ParseContext.ReadSFixed64">
  3550. <summary>
  3551. Reads an sfixed64 field value from the input.
  3552. </summary>
  3553. </member>
  3554. <member name="M:Google.Protobuf.ParseContext.ReadSInt32">
  3555. <summary>
  3556. Reads an sint32 field value from the input.
  3557. </summary>
  3558. </member>
  3559. <member name="M:Google.Protobuf.ParseContext.ReadSInt64">
  3560. <summary>
  3561. Reads an sint64 field value from the input.
  3562. </summary>
  3563. </member>
  3564. <member name="M:Google.Protobuf.ParseContext.ReadLength">
  3565. <summary>
  3566. Reads a length for length-delimited data.
  3567. </summary>
  3568. <remarks>
  3569. This is internally just reading a varint, but this method exists
  3570. to make the calling code clearer.
  3571. </remarks>
  3572. </member>
  3573. <member name="F:Google.Protobuf.ParserInternalState.bufferPos">
  3574. <summary>
  3575. The position within the current buffer (i.e. the next byte to read)
  3576. </summary>
  3577. </member>
  3578. <member name="F:Google.Protobuf.ParserInternalState.bufferSize">
  3579. <summary>
  3580. Size of the current buffer
  3581. </summary>
  3582. </member>
  3583. <member name="F:Google.Protobuf.ParserInternalState.bufferSizeAfterLimit">
  3584. <summary>
  3585. If we are currently inside a length-delimited block, this is the number of
  3586. bytes in the buffer that are still available once we leave the delimited block.
  3587. </summary>
  3588. </member>
  3589. <member name="F:Google.Protobuf.ParserInternalState.currentLimit">
  3590. <summary>
  3591. The absolute position of the end of the current length-delimited block (including totalBytesRetired)
  3592. </summary>
  3593. </member>
  3594. <member name="F:Google.Protobuf.ParserInternalState.totalBytesRetired">
  3595. <summary>
  3596. The total number of consumed before the start of the current buffer. The
  3597. total bytes read up to the current position can be computed as
  3598. totalBytesRetired + bufferPos.
  3599. </summary>
  3600. </member>
  3601. <member name="F:Google.Protobuf.ParserInternalState.lastTag">
  3602. <summary>
  3603. The last tag we read. 0 indicates we've read to the end of the stream
  3604. (or haven't read anything yet).
  3605. </summary>
  3606. </member>
  3607. <member name="F:Google.Protobuf.ParserInternalState.nextTag">
  3608. <summary>
  3609. The next tag, used to store the value read by PeekTag.
  3610. </summary>
  3611. </member>
  3612. <member name="P:Google.Protobuf.ParserInternalState.DiscardUnknownFields">
  3613. <summary>
  3614. Internal-only property; when set to true, unknown fields will be discarded while parsing.
  3615. </summary>
  3616. </member>
  3617. <member name="P:Google.Protobuf.ParserInternalState.ExtensionRegistry">
  3618. <summary>
  3619. Internal-only property; provides extension identifiers to compatible messages while parsing.
  3620. </summary>
  3621. </member>
  3622. <member name="T:Google.Protobuf.ParsingPrimitives">
  3623. <summary>
  3624. Primitives for parsing protobuf wire format.
  3625. </summary>
  3626. </member>
  3627. <member name="M:Google.Protobuf.ParsingPrimitives.ParseLength(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3628. <summary>
  3629. Reads a length for length-delimited data.
  3630. </summary>
  3631. <remarks>
  3632. This is internally just reading a varint, but this method exists
  3633. to make the calling code clearer.
  3634. </remarks>
  3635. </member>
  3636. <member name="M:Google.Protobuf.ParsingPrimitives.ParseTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3637. <summary>
  3638. Parses the next tag.
  3639. If the end of logical stream was reached, an invalid tag of 0 is returned.
  3640. </summary>
  3641. </member>
  3642. <member name="M:Google.Protobuf.ParsingPrimitives.MaybeConsumeTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.UInt32)">
  3643. <summary>
  3644. Peeks at the next tag in the stream. If it matches <paramref name="tag"/>,
  3645. the tag is consumed and the method returns <c>true</c>; otherwise, the
  3646. stream is left in the original position and the method returns <c>false</c>.
  3647. </summary>
  3648. </member>
  3649. <member name="M:Google.Protobuf.ParsingPrimitives.PeekTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3650. <summary>
  3651. Peeks at the next field tag. This is like calling <see cref="M:Google.Protobuf.ParsingPrimitives.ParseTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)"/>, but the
  3652. tag is not consumed. (So a subsequent call to <see cref="M:Google.Protobuf.ParsingPrimitives.ParseTag(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)"/> will return the
  3653. same value.)
  3654. </summary>
  3655. </member>
  3656. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawVarint64(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3657. <summary>
  3658. Parses a raw varint.
  3659. </summary>
  3660. </member>
  3661. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawVarint32(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3662. <summary>
  3663. Parses a raw Varint. If larger than 32 bits, discard the upper bits.
  3664. This method is optimised for the case where we've got lots of data in the buffer.
  3665. That means we can check the size just once, then just read directly from the buffer
  3666. without constant rechecking of the buffer length.
  3667. </summary>
  3668. </member>
  3669. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawLittleEndian32(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3670. <summary>
  3671. Parses a 32-bit little-endian integer.
  3672. </summary>
  3673. </member>
  3674. <member name="M:Google.Protobuf.ParsingPrimitives.ParseRawLittleEndian64(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3675. <summary>
  3676. Parses a 64-bit little-endian integer.
  3677. </summary>
  3678. </member>
  3679. <member name="M:Google.Protobuf.ParsingPrimitives.ParseDouble(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3680. <summary>
  3681. Parses a double value.
  3682. </summary>
  3683. </member>
  3684. <member name="M:Google.Protobuf.ParsingPrimitives.ParseFloat(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3685. <summary>
  3686. Parses a float value.
  3687. </summary>
  3688. </member>
  3689. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawBytes(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3690. <summary>
  3691. Reads a fixed size of bytes from the input.
  3692. </summary>
  3693. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">
  3694. the end of the stream or the current limit was reached
  3695. </exception>
  3696. </member>
  3697. <member name="M:Google.Protobuf.ParsingPrimitives.SkipRawBytes(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3698. <summary>
  3699. Reads and discards <paramref name="size"/> bytes.
  3700. </summary>
  3701. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">the end of the stream
  3702. or the current limit was reached</exception>
  3703. </member>
  3704. <member name="M:Google.Protobuf.ParsingPrimitives.ReadString(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3705. <summary>
  3706. Reads a string field value from the input.
  3707. </summary>
  3708. </member>
  3709. <member name="M:Google.Protobuf.ParsingPrimitives.ReadBytes(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  3710. <summary>
  3711. Reads a bytes field value from the input.
  3712. </summary>
  3713. </member>
  3714. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawString(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3715. <summary>
  3716. Reads a UTF-8 string from the next "length" bytes.
  3717. </summary>
  3718. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">
  3719. the end of the stream or the current limit was reached
  3720. </exception>
  3721. </member>
  3722. <member name="M:Google.Protobuf.ParsingPrimitives.ReadStringSlow(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3723. <summary>
  3724. Reads a string assuming that it is spread across multiple spans in a <see cref="T:System.Buffers.ReadOnlySequence`1"/>.
  3725. </summary>
  3726. </member>
  3727. <member name="M:Google.Protobuf.ParsingPrimitives.ValidateCurrentLimit(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32)">
  3728. <summary>
  3729. Validates that the specified size doesn't exceed the current limit. If it does then remaining bytes
  3730. are skipped and an error is thrown.
  3731. </summary>
  3732. </member>
  3733. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawVarint32(System.IO.Stream)">
  3734. <summary>
  3735. Reads a varint from the input one byte at a time, so that it does not
  3736. read any bytes after the end of the varint. If you simply wrapped the
  3737. stream in a CodedInputStream and used ReadRawVarint32(Stream)
  3738. then you would probably end up reading past the end of the varint since
  3739. CodedInputStream buffers its input.
  3740. </summary>
  3741. <param name="input"></param>
  3742. <returns></returns>
  3743. </member>
  3744. <member name="M:Google.Protobuf.ParsingPrimitives.DecodeZigZag32(System.UInt32)">
  3745. <summary>
  3746. Decode a 32-bit value with ZigZag encoding.
  3747. </summary>
  3748. <remarks>
  3749. ZigZag encodes signed integers into values that can be efficiently
  3750. encoded with varint. (Otherwise, negative values must be
  3751. sign-extended to 32 bits to be varint encoded, thus always taking
  3752. 5 bytes on the wire.)
  3753. </remarks>
  3754. </member>
  3755. <member name="M:Google.Protobuf.ParsingPrimitives.DecodeZigZag64(System.UInt64)">
  3756. <summary>
  3757. Decode a 64-bit value with ZigZag encoding.
  3758. </summary>
  3759. <remarks>
  3760. ZigZag encodes signed integers into values that can be efficiently
  3761. encoded with varint. (Otherwise, negative values must be
  3762. sign-extended to 64 bits to be varint encoded, thus always taking
  3763. 10 bytes on the wire.)
  3764. </remarks>
  3765. </member>
  3766. <member name="M:Google.Protobuf.ParsingPrimitives.IsDataAvailable(Google.Protobuf.ParserInternalState@,System.Int32)">
  3767. <summary>
  3768. Checks whether there is known data available of the specified size remaining to parse.
  3769. When parsing from a Stream this can return false because we have no knowledge of the amount
  3770. of data remaining in the stream until it is read.
  3771. </summary>
  3772. </member>
  3773. <member name="M:Google.Protobuf.ParsingPrimitives.IsDataAvailableInSource(Google.Protobuf.ParserInternalState@,System.Int32)">
  3774. <summary>
  3775. Checks whether there is known data available of the specified size remaining to parse
  3776. in the underlying data source.
  3777. When parsing from a Stream this will return false because we have no knowledge of the amount
  3778. of data remaining in the stream until it is read.
  3779. </summary>
  3780. </member>
  3781. <member name="M:Google.Protobuf.ParsingPrimitives.ReadRawBytesIntoSpan(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.Int32,System.Span{System.Byte})">
  3782. <summary>
  3783. Read raw bytes of the specified length into a span. The amount of data available and the current limit should
  3784. be checked before calling this method.
  3785. </summary>
  3786. </member>
  3787. <member name="T:Google.Protobuf.ParsingPrimitivesMessages">
  3788. <summary>
  3789. Reading and skipping messages / groups
  3790. </summary>
  3791. </member>
  3792. <member name="M:Google.Protobuf.ParsingPrimitivesMessages.SkipGroup(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@,System.UInt32)">
  3793. <summary>
  3794. Skip a group.
  3795. </summary>
  3796. </member>
  3797. <member name="M:Google.Protobuf.ParsingPrimitivesMessages.CheckReadEndOfStreamTag(Google.Protobuf.ParserInternalState@)">
  3798. <summary>
  3799. Verifies that the last call to ReadTag() returned tag 0 - in other words,
  3800. we've reached the end of the stream when we expected to.
  3801. </summary>
  3802. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The
  3803. tag read was not the one specified</exception>
  3804. </member>
  3805. <member name="T:Google.Protobuf.ParsingPrimitivesWrappers">
  3806. <summary>
  3807. Fast parsing primitives for wrapper types
  3808. </summary>
  3809. </member>
  3810. <member name="T:Google.Protobuf.ProtoPreconditions">
  3811. <summary>
  3812. Helper methods for throwing exceptions when preconditions are not met.
  3813. </summary>
  3814. <remarks>
  3815. This class is used internally and by generated code; it is not particularly
  3816. expected to be used from application code, although nothing prevents it
  3817. from being used that way.
  3818. </remarks>
  3819. </member>
  3820. <member name="M:Google.Protobuf.ProtoPreconditions.CheckNotNull``1(``0,System.String)">
  3821. <summary>
  3822. Throws an ArgumentNullException if the given value is null, otherwise
  3823. return the value to the caller.
  3824. </summary>
  3825. </member>
  3826. <member name="M:Google.Protobuf.ProtoPreconditions.CheckNotNullUnconstrained``1(``0,System.String)">
  3827. <summary>
  3828. Throws an ArgumentNullException if the given value is null, otherwise
  3829. return the value to the caller.
  3830. </summary>
  3831. <remarks>
  3832. This is equivalent to <see cref="M:Google.Protobuf.ProtoPreconditions.CheckNotNull``1(``0,System.String)"/> but without the type parameter
  3833. constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull
  3834. with a value type - but it gets in the way if either you want to use it with a nullable
  3835. value type, or you want to use it with an unconstrained type parameter.
  3836. </remarks>
  3837. </member>
  3838. <member name="T:Google.Protobuf.Reflection.CustomOptions">
  3839. <summary>
  3840. Container for a set of custom options specified within a message, field etc.
  3841. </summary>
  3842. <remarks>
  3843. <para>
  3844. This type is publicly immutable, but internally mutable. It is only populated
  3845. by the descriptor parsing code - by the time any user code is able to see an instance,
  3846. it will be fully initialized.
  3847. </para>
  3848. <para>
  3849. If an option is requested using the incorrect method, an answer may still be returned: all
  3850. of the numeric types are represented internally using 64-bit integers, for example. It is up to
  3851. the caller to ensure that they make the appropriate method call for the option they're interested in.
  3852. Note that enum options are simply stored as integers, so the value should be fetched using
  3853. <see cref="M:Google.Protobuf.Reflection.CustomOptions.TryGetInt32(System.Int32,System.Int32@)"/> and then cast appropriately.
  3854. </para>
  3855. <para>
  3856. Repeated options are currently not supported. Asking for a single value of an option
  3857. which was actually repeated will return the last value, except for message types where
  3858. all the set values are merged together.
  3859. </para>
  3860. </remarks>
  3861. </member>
  3862. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetBool(System.Int32,System.Boolean@)">
  3863. <summary>
  3864. Retrieves a Boolean value for the specified option field.
  3865. </summary>
  3866. <param name="field">The field to fetch the value for.</param>
  3867. <param name="value">The output variable to populate.</param>
  3868. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3869. </member>
  3870. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetInt32(System.Int32,System.Int32@)">
  3871. <summary>
  3872. Retrieves a signed 32-bit integer value for the specified option field.
  3873. </summary>
  3874. <param name="field">The field to fetch the value for.</param>
  3875. <param name="value">The output variable to populate.</param>
  3876. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3877. </member>
  3878. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetInt64(System.Int32,System.Int64@)">
  3879. <summary>
  3880. Retrieves a signed 64-bit integer value for the specified option field.
  3881. </summary>
  3882. <param name="field">The field to fetch the value for.</param>
  3883. <param name="value">The output variable to populate.</param>
  3884. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3885. </member>
  3886. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetFixed32(System.Int32,System.UInt32@)">
  3887. <summary>
  3888. Retrieves an unsigned 32-bit integer value for the specified option field,
  3889. assuming a fixed-length representation.
  3890. </summary>
  3891. <param name="field">The field to fetch the value for.</param>
  3892. <param name="value">The output variable to populate.</param>
  3893. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3894. </member>
  3895. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetFixed64(System.Int32,System.UInt64@)">
  3896. <summary>
  3897. Retrieves an unsigned 64-bit integer value for the specified option field,
  3898. assuming a fixed-length representation.
  3899. </summary>
  3900. <param name="field">The field to fetch the value for.</param>
  3901. <param name="value">The output variable to populate.</param>
  3902. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3903. </member>
  3904. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSFixed32(System.Int32,System.Int32@)">
  3905. <summary>
  3906. Retrieves a signed 32-bit integer value for the specified option field,
  3907. assuming a fixed-length representation.
  3908. </summary>
  3909. <param name="field">The field to fetch the value for.</param>
  3910. <param name="value">The output variable to populate.</param>
  3911. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3912. </member>
  3913. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSFixed64(System.Int32,System.Int64@)">
  3914. <summary>
  3915. Retrieves a signed 64-bit integer value for the specified option field,
  3916. assuming a fixed-length representation.
  3917. </summary>
  3918. <param name="field">The field to fetch the value for.</param>
  3919. <param name="value">The output variable to populate.</param>
  3920. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3921. </member>
  3922. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSInt32(System.Int32,System.Int32@)">
  3923. <summary>
  3924. Retrieves a signed 32-bit integer value for the specified option field,
  3925. assuming a zigzag encoding.
  3926. </summary>
  3927. <param name="field">The field to fetch the value for.</param>
  3928. <param name="value">The output variable to populate.</param>
  3929. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3930. </member>
  3931. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetSInt64(System.Int32,System.Int64@)">
  3932. <summary>
  3933. Retrieves a signed 64-bit integer value for the specified option field,
  3934. assuming a zigzag encoding.
  3935. </summary>
  3936. <param name="field">The field to fetch the value for.</param>
  3937. <param name="value">The output variable to populate.</param>
  3938. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3939. </member>
  3940. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetUInt32(System.Int32,System.UInt32@)">
  3941. <summary>
  3942. Retrieves an unsigned 32-bit integer value for the specified option field.
  3943. </summary>
  3944. <param name="field">The field to fetch the value for.</param>
  3945. <param name="value">The output variable to populate.</param>
  3946. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3947. </member>
  3948. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetUInt64(System.Int32,System.UInt64@)">
  3949. <summary>
  3950. Retrieves an unsigned 64-bit integer value for the specified option field.
  3951. </summary>
  3952. <param name="field">The field to fetch the value for.</param>
  3953. <param name="value">The output variable to populate.</param>
  3954. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3955. </member>
  3956. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetFloat(System.Int32,System.Single@)">
  3957. <summary>
  3958. Retrieves a 32-bit floating point value for the specified option field.
  3959. </summary>
  3960. <param name="field">The field to fetch the value for.</param>
  3961. <param name="value">The output variable to populate.</param>
  3962. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3963. </member>
  3964. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetDouble(System.Int32,System.Double@)">
  3965. <summary>
  3966. Retrieves a 64-bit floating point value for the specified option field.
  3967. </summary>
  3968. <param name="field">The field to fetch the value for.</param>
  3969. <param name="value">The output variable to populate.</param>
  3970. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3971. </member>
  3972. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetString(System.Int32,System.String@)">
  3973. <summary>
  3974. Retrieves a string value for the specified option field.
  3975. </summary>
  3976. <param name="field">The field to fetch the value for.</param>
  3977. <param name="value">The output variable to populate.</param>
  3978. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3979. </member>
  3980. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetBytes(System.Int32,Google.Protobuf.ByteString@)">
  3981. <summary>
  3982. Retrieves a bytes value for the specified option field.
  3983. </summary>
  3984. <param name="field">The field to fetch the value for.</param>
  3985. <param name="value">The output variable to populate.</param>
  3986. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3987. </member>
  3988. <member name="M:Google.Protobuf.Reflection.CustomOptions.TryGetMessage``1(System.Int32,``0@)">
  3989. <summary>
  3990. Retrieves a message value for the specified option field.
  3991. </summary>
  3992. <param name="field">The field to fetch the value for.</param>
  3993. <param name="value">The output variable to populate.</param>
  3994. <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
  3995. </member>
  3996. <member name="T:Google.Protobuf.Reflection.DescriptorReflection">
  3997. <summary>Holder for reflection information generated from google/protobuf/descriptor.proto</summary>
  3998. </member>
  3999. <member name="P:Google.Protobuf.Reflection.DescriptorReflection.Descriptor">
  4000. <summary>File descriptor for google/protobuf/descriptor.proto</summary>
  4001. </member>
  4002. <member name="T:Google.Protobuf.Reflection.FileDescriptorSet">
  4003. <summary>
  4004. The protocol compiler can output a FileDescriptorSet containing the .proto
  4005. files it parses.
  4006. </summary>
  4007. </member>
  4008. <member name="F:Google.Protobuf.Reflection.FileDescriptorSet.FileFieldNumber">
  4009. <summary>Field number for the "file" field.</summary>
  4010. </member>
  4011. <member name="T:Google.Protobuf.Reflection.FileDescriptorProto">
  4012. <summary>
  4013. Describes a complete .proto file.
  4014. </summary>
  4015. </member>
  4016. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.NameFieldNumber">
  4017. <summary>Field number for the "name" field.</summary>
  4018. </member>
  4019. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Name">
  4020. <summary>
  4021. file name, relative to root of source tree
  4022. </summary>
  4023. </member>
  4024. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.HasName">
  4025. <summary>Gets whether the "name" field is set</summary>
  4026. </member>
  4027. <member name="M:Google.Protobuf.Reflection.FileDescriptorProto.ClearName">
  4028. <summary>Clears the value of the "name" field</summary>
  4029. </member>
  4030. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.PackageFieldNumber">
  4031. <summary>Field number for the "package" field.</summary>
  4032. </member>
  4033. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Package">
  4034. <summary>
  4035. e.g. "foo", "foo.bar", etc.
  4036. </summary>
  4037. </member>
  4038. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.HasPackage">
  4039. <summary>Gets whether the "package" field is set</summary>
  4040. </member>
  4041. <member name="M:Google.Protobuf.Reflection.FileDescriptorProto.ClearPackage">
  4042. <summary>Clears the value of the "package" field</summary>
  4043. </member>
  4044. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.DependencyFieldNumber">
  4045. <summary>Field number for the "dependency" field.</summary>
  4046. </member>
  4047. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Dependency">
  4048. <summary>
  4049. Names of files imported by this file.
  4050. </summary>
  4051. </member>
  4052. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.PublicDependencyFieldNumber">
  4053. <summary>Field number for the "public_dependency" field.</summary>
  4054. </member>
  4055. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.PublicDependency">
  4056. <summary>
  4057. Indexes of the public imported files in the dependency list above.
  4058. </summary>
  4059. </member>
  4060. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.WeakDependencyFieldNumber">
  4061. <summary>Field number for the "weak_dependency" field.</summary>
  4062. </member>
  4063. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.WeakDependency">
  4064. <summary>
  4065. Indexes of the weak imported files in the dependency list.
  4066. For Google-internal migration only. Do not use.
  4067. </summary>
  4068. </member>
  4069. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.MessageTypeFieldNumber">
  4070. <summary>Field number for the "message_type" field.</summary>
  4071. </member>
  4072. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.MessageType">
  4073. <summary>
  4074. All top-level definitions in this file.
  4075. </summary>
  4076. </member>
  4077. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.EnumTypeFieldNumber">
  4078. <summary>Field number for the "enum_type" field.</summary>
  4079. </member>
  4080. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.ServiceFieldNumber">
  4081. <summary>Field number for the "service" field.</summary>
  4082. </member>
  4083. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.ExtensionFieldNumber">
  4084. <summary>Field number for the "extension" field.</summary>
  4085. </member>
  4086. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.OptionsFieldNumber">
  4087. <summary>Field number for the "options" field.</summary>
  4088. </member>
  4089. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.SourceCodeInfoFieldNumber">
  4090. <summary>Field number for the "source_code_info" field.</summary>
  4091. </member>
  4092. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.SourceCodeInfo">
  4093. <summary>
  4094. This field contains optional information about the original source code.
  4095. You may safely remove this entire field without harming runtime
  4096. functionality of the descriptors -- the information is needed only by
  4097. development tools.
  4098. </summary>
  4099. </member>
  4100. <member name="F:Google.Protobuf.Reflection.FileDescriptorProto.SyntaxFieldNumber">
  4101. <summary>Field number for the "syntax" field.</summary>
  4102. </member>
  4103. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.Syntax">
  4104. <summary>
  4105. The syntax of the proto file.
  4106. The supported values are "proto2" and "proto3".
  4107. </summary>
  4108. </member>
  4109. <member name="P:Google.Protobuf.Reflection.FileDescriptorProto.HasSyntax">
  4110. <summary>Gets whether the "syntax" field is set</summary>
  4111. </member>
  4112. <member name="M:Google.Protobuf.Reflection.FileDescriptorProto.ClearSyntax">
  4113. <summary>Clears the value of the "syntax" field</summary>
  4114. </member>
  4115. <member name="T:Google.Protobuf.Reflection.DescriptorProto">
  4116. <summary>
  4117. Describes a message type.
  4118. </summary>
  4119. </member>
  4120. <member name="F:Google.Protobuf.Reflection.DescriptorProto.NameFieldNumber">
  4121. <summary>Field number for the "name" field.</summary>
  4122. </member>
  4123. <member name="P:Google.Protobuf.Reflection.DescriptorProto.HasName">
  4124. <summary>Gets whether the "name" field is set</summary>
  4125. </member>
  4126. <member name="M:Google.Protobuf.Reflection.DescriptorProto.ClearName">
  4127. <summary>Clears the value of the "name" field</summary>
  4128. </member>
  4129. <member name="F:Google.Protobuf.Reflection.DescriptorProto.FieldFieldNumber">
  4130. <summary>Field number for the "field" field.</summary>
  4131. </member>
  4132. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ExtensionFieldNumber">
  4133. <summary>Field number for the "extension" field.</summary>
  4134. </member>
  4135. <member name="F:Google.Protobuf.Reflection.DescriptorProto.NestedTypeFieldNumber">
  4136. <summary>Field number for the "nested_type" field.</summary>
  4137. </member>
  4138. <member name="F:Google.Protobuf.Reflection.DescriptorProto.EnumTypeFieldNumber">
  4139. <summary>Field number for the "enum_type" field.</summary>
  4140. </member>
  4141. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ExtensionRangeFieldNumber">
  4142. <summary>Field number for the "extension_range" field.</summary>
  4143. </member>
  4144. <member name="F:Google.Protobuf.Reflection.DescriptorProto.OneofDeclFieldNumber">
  4145. <summary>Field number for the "oneof_decl" field.</summary>
  4146. </member>
  4147. <member name="F:Google.Protobuf.Reflection.DescriptorProto.OptionsFieldNumber">
  4148. <summary>Field number for the "options" field.</summary>
  4149. </member>
  4150. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ReservedRangeFieldNumber">
  4151. <summary>Field number for the "reserved_range" field.</summary>
  4152. </member>
  4153. <member name="F:Google.Protobuf.Reflection.DescriptorProto.ReservedNameFieldNumber">
  4154. <summary>Field number for the "reserved_name" field.</summary>
  4155. </member>
  4156. <member name="P:Google.Protobuf.Reflection.DescriptorProto.ReservedName">
  4157. <summary>
  4158. Reserved field names, which may not be used by fields in the same message.
  4159. A given name may only be reserved once.
  4160. </summary>
  4161. </member>
  4162. <member name="T:Google.Protobuf.Reflection.DescriptorProto.Types">
  4163. <summary>Container for nested types declared in the DescriptorProto message type.</summary>
  4164. </member>
  4165. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.StartFieldNumber">
  4166. <summary>Field number for the "start" field.</summary>
  4167. </member>
  4168. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.Start">
  4169. <summary>
  4170. Inclusive.
  4171. </summary>
  4172. </member>
  4173. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.HasStart">
  4174. <summary>Gets whether the "start" field is set</summary>
  4175. </member>
  4176. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.ClearStart">
  4177. <summary>Clears the value of the "start" field</summary>
  4178. </member>
  4179. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.EndFieldNumber">
  4180. <summary>Field number for the "end" field.</summary>
  4181. </member>
  4182. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.End">
  4183. <summary>
  4184. Exclusive.
  4185. </summary>
  4186. </member>
  4187. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.HasEnd">
  4188. <summary>Gets whether the "end" field is set</summary>
  4189. </member>
  4190. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.ClearEnd">
  4191. <summary>Clears the value of the "end" field</summary>
  4192. </member>
  4193. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ExtensionRange.OptionsFieldNumber">
  4194. <summary>Field number for the "options" field.</summary>
  4195. </member>
  4196. <member name="T:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange">
  4197. <summary>
  4198. Range of reserved tag numbers. Reserved tag numbers may not be used by
  4199. fields or extension ranges in the same message. Reserved ranges may
  4200. not overlap.
  4201. </summary>
  4202. </member>
  4203. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.StartFieldNumber">
  4204. <summary>Field number for the "start" field.</summary>
  4205. </member>
  4206. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.Start">
  4207. <summary>
  4208. Inclusive.
  4209. </summary>
  4210. </member>
  4211. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.HasStart">
  4212. <summary>Gets whether the "start" field is set</summary>
  4213. </member>
  4214. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.ClearStart">
  4215. <summary>Clears the value of the "start" field</summary>
  4216. </member>
  4217. <member name="F:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.EndFieldNumber">
  4218. <summary>Field number for the "end" field.</summary>
  4219. </member>
  4220. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.End">
  4221. <summary>
  4222. Exclusive.
  4223. </summary>
  4224. </member>
  4225. <member name="P:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.HasEnd">
  4226. <summary>Gets whether the "end" field is set</summary>
  4227. </member>
  4228. <member name="M:Google.Protobuf.Reflection.DescriptorProto.Types.ReservedRange.ClearEnd">
  4229. <summary>Clears the value of the "end" field</summary>
  4230. </member>
  4231. <member name="F:Google.Protobuf.Reflection.ExtensionRangeOptions.UninterpretedOptionFieldNumber">
  4232. <summary>Field number for the "uninterpreted_option" field.</summary>
  4233. </member>
  4234. <member name="P:Google.Protobuf.Reflection.ExtensionRangeOptions.UninterpretedOption">
  4235. <summary>
  4236. The parser stores options it doesn't recognize here. See above.
  4237. </summary>
  4238. </member>
  4239. <member name="T:Google.Protobuf.Reflection.FieldDescriptorProto">
  4240. <summary>
  4241. Describes a field within a message.
  4242. </summary>
  4243. </member>
  4244. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.NameFieldNumber">
  4245. <summary>Field number for the "name" field.</summary>
  4246. </member>
  4247. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasName">
  4248. <summary>Gets whether the "name" field is set</summary>
  4249. </member>
  4250. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearName">
  4251. <summary>Clears the value of the "name" field</summary>
  4252. </member>
  4253. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.NumberFieldNumber">
  4254. <summary>Field number for the "number" field.</summary>
  4255. </member>
  4256. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasNumber">
  4257. <summary>Gets whether the "number" field is set</summary>
  4258. </member>
  4259. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearNumber">
  4260. <summary>Clears the value of the "number" field</summary>
  4261. </member>
  4262. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.LabelFieldNumber">
  4263. <summary>Field number for the "label" field.</summary>
  4264. </member>
  4265. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasLabel">
  4266. <summary>Gets whether the "label" field is set</summary>
  4267. </member>
  4268. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearLabel">
  4269. <summary>Clears the value of the "label" field</summary>
  4270. </member>
  4271. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.TypeFieldNumber">
  4272. <summary>Field number for the "type" field.</summary>
  4273. </member>
  4274. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.Type">
  4275. <summary>
  4276. If type_name is set, this need not be set. If both this and type_name
  4277. are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
  4278. </summary>
  4279. </member>
  4280. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasType">
  4281. <summary>Gets whether the "type" field is set</summary>
  4282. </member>
  4283. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearType">
  4284. <summary>Clears the value of the "type" field</summary>
  4285. </member>
  4286. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.TypeNameFieldNumber">
  4287. <summary>Field number for the "type_name" field.</summary>
  4288. </member>
  4289. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.TypeName">
  4290. <summary>
  4291. For message and enum types, this is the name of the type. If the name
  4292. starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
  4293. rules are used to find the type (i.e. first the nested types within this
  4294. message are searched, then within the parent, on up to the root
  4295. namespace).
  4296. </summary>
  4297. </member>
  4298. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasTypeName">
  4299. <summary>Gets whether the "type_name" field is set</summary>
  4300. </member>
  4301. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearTypeName">
  4302. <summary>Clears the value of the "type_name" field</summary>
  4303. </member>
  4304. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.ExtendeeFieldNumber">
  4305. <summary>Field number for the "extendee" field.</summary>
  4306. </member>
  4307. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.Extendee">
  4308. <summary>
  4309. For extensions, this is the name of the type being extended. It is
  4310. resolved in the same manner as type_name.
  4311. </summary>
  4312. </member>
  4313. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasExtendee">
  4314. <summary>Gets whether the "extendee" field is set</summary>
  4315. </member>
  4316. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearExtendee">
  4317. <summary>Clears the value of the "extendee" field</summary>
  4318. </member>
  4319. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.DefaultValueFieldNumber">
  4320. <summary>Field number for the "default_value" field.</summary>
  4321. </member>
  4322. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.DefaultValue">
  4323. <summary>
  4324. For numeric types, contains the original text representation of the value.
  4325. For booleans, "true" or "false".
  4326. For strings, contains the default text contents (not escaped in any way).
  4327. For bytes, contains the C escaped value. All bytes >= 128 are escaped.
  4328. TODO(kenton): Base-64 encode?
  4329. </summary>
  4330. </member>
  4331. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasDefaultValue">
  4332. <summary>Gets whether the "default_value" field is set</summary>
  4333. </member>
  4334. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearDefaultValue">
  4335. <summary>Clears the value of the "default_value" field</summary>
  4336. </member>
  4337. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.OneofIndexFieldNumber">
  4338. <summary>Field number for the "oneof_index" field.</summary>
  4339. </member>
  4340. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.OneofIndex">
  4341. <summary>
  4342. If set, gives the index of a oneof in the containing type's oneof_decl
  4343. list. This field is a member of that oneof.
  4344. </summary>
  4345. </member>
  4346. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasOneofIndex">
  4347. <summary>Gets whether the "oneof_index" field is set</summary>
  4348. </member>
  4349. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearOneofIndex">
  4350. <summary>Clears the value of the "oneof_index" field</summary>
  4351. </member>
  4352. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.JsonNameFieldNumber">
  4353. <summary>Field number for the "json_name" field.</summary>
  4354. </member>
  4355. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.JsonName">
  4356. <summary>
  4357. JSON name of this field. The value is set by protocol compiler. If the
  4358. user has set a "json_name" option on this field, that option's value
  4359. will be used. Otherwise, it's deduced from the field's name by converting
  4360. it to camelCase.
  4361. </summary>
  4362. </member>
  4363. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasJsonName">
  4364. <summary>Gets whether the "json_name" field is set</summary>
  4365. </member>
  4366. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearJsonName">
  4367. <summary>Clears the value of the "json_name" field</summary>
  4368. </member>
  4369. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.OptionsFieldNumber">
  4370. <summary>Field number for the "options" field.</summary>
  4371. </member>
  4372. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Proto3OptionalFieldNumber">
  4373. <summary>Field number for the "proto3_optional" field.</summary>
  4374. </member>
  4375. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.Proto3Optional">
  4376. <summary>
  4377. If true, this is a proto3 "optional". When a proto3 field is optional, it
  4378. tracks presence regardless of field type.
  4379. When proto3_optional is true, this field must be belong to a oneof to
  4380. signal to old proto3 clients that presence is tracked for this field. This
  4381. oneof is known as a "synthetic" oneof, and this field must be its sole
  4382. member (each proto3 optional field gets its own synthetic oneof). Synthetic
  4383. oneofs exist in the descriptor only, and do not generate any API. Synthetic
  4384. oneofs must be ordered after all "real" oneofs.
  4385. For message fields, proto3_optional doesn't create any semantic change,
  4386. since non-repeated message fields always track presence. However it still
  4387. indicates the semantic detail of whether the user wrote "optional" or not.
  4388. This can be useful for round-tripping the .proto file. For consistency we
  4389. give message fields a synthetic oneof also, even though it is not required
  4390. to track presence. This is especially important because the parser can't
  4391. tell if a field is a message or an enum, so it must always create a
  4392. synthetic oneof.
  4393. Proto2 optional fields do not set this flag, because they already indicate
  4394. optional with `LABEL_OPTIONAL`.
  4395. </summary>
  4396. </member>
  4397. <member name="P:Google.Protobuf.Reflection.FieldDescriptorProto.HasProto3Optional">
  4398. <summary>Gets whether the "proto3_optional" field is set</summary>
  4399. </member>
  4400. <member name="M:Google.Protobuf.Reflection.FieldDescriptorProto.ClearProto3Optional">
  4401. <summary>Clears the value of the "proto3_optional" field</summary>
  4402. </member>
  4403. <member name="T:Google.Protobuf.Reflection.FieldDescriptorProto.Types">
  4404. <summary>Container for nested types declared in the FieldDescriptorProto message type.</summary>
  4405. </member>
  4406. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Double">
  4407. <summary>
  4408. 0 is reserved for errors.
  4409. Order is weird for historical reasons.
  4410. </summary>
  4411. </member>
  4412. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Int64">
  4413. <summary>
  4414. Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
  4415. negative values are likely.
  4416. </summary>
  4417. </member>
  4418. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Int32">
  4419. <summary>
  4420. Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
  4421. negative values are likely.
  4422. </summary>
  4423. </member>
  4424. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Group">
  4425. <summary>
  4426. Tag-delimited aggregate.
  4427. Group type is deprecated and not supported in proto3. However, Proto3
  4428. implementations should still be able to parse the group wire format and
  4429. treat group fields as unknown fields.
  4430. </summary>
  4431. </member>
  4432. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Message">
  4433. <summary>
  4434. Length-delimited aggregate.
  4435. </summary>
  4436. </member>
  4437. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Bytes">
  4438. <summary>
  4439. New in version 2.
  4440. </summary>
  4441. </member>
  4442. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Sint32">
  4443. <summary>
  4444. Uses ZigZag encoding.
  4445. </summary>
  4446. </member>
  4447. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type.Sint64">
  4448. <summary>
  4449. Uses ZigZag encoding.
  4450. </summary>
  4451. </member>
  4452. <member name="F:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Label.Optional">
  4453. <summary>
  4454. 0 is reserved for errors
  4455. </summary>
  4456. </member>
  4457. <member name="T:Google.Protobuf.Reflection.OneofDescriptorProto">
  4458. <summary>
  4459. Describes a oneof.
  4460. </summary>
  4461. </member>
  4462. <member name="F:Google.Protobuf.Reflection.OneofDescriptorProto.NameFieldNumber">
  4463. <summary>Field number for the "name" field.</summary>
  4464. </member>
  4465. <member name="P:Google.Protobuf.Reflection.OneofDescriptorProto.HasName">
  4466. <summary>Gets whether the "name" field is set</summary>
  4467. </member>
  4468. <member name="M:Google.Protobuf.Reflection.OneofDescriptorProto.ClearName">
  4469. <summary>Clears the value of the "name" field</summary>
  4470. </member>
  4471. <member name="F:Google.Protobuf.Reflection.OneofDescriptorProto.OptionsFieldNumber">
  4472. <summary>Field number for the "options" field.</summary>
  4473. </member>
  4474. <member name="T:Google.Protobuf.Reflection.EnumDescriptorProto">
  4475. <summary>
  4476. Describes an enum type.
  4477. </summary>
  4478. </member>
  4479. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.NameFieldNumber">
  4480. <summary>Field number for the "name" field.</summary>
  4481. </member>
  4482. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.HasName">
  4483. <summary>Gets whether the "name" field is set</summary>
  4484. </member>
  4485. <member name="M:Google.Protobuf.Reflection.EnumDescriptorProto.ClearName">
  4486. <summary>Clears the value of the "name" field</summary>
  4487. </member>
  4488. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.ValueFieldNumber">
  4489. <summary>Field number for the "value" field.</summary>
  4490. </member>
  4491. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.OptionsFieldNumber">
  4492. <summary>Field number for the "options" field.</summary>
  4493. </member>
  4494. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedRangeFieldNumber">
  4495. <summary>Field number for the "reserved_range" field.</summary>
  4496. </member>
  4497. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedRange">
  4498. <summary>
  4499. Range of reserved numeric values. Reserved numeric values may not be used
  4500. by enum values in the same enum declaration. Reserved ranges may not
  4501. overlap.
  4502. </summary>
  4503. </member>
  4504. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedNameFieldNumber">
  4505. <summary>Field number for the "reserved_name" field.</summary>
  4506. </member>
  4507. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.ReservedName">
  4508. <summary>
  4509. Reserved enum value names, which may not be reused. A given name may only
  4510. be reserved once.
  4511. </summary>
  4512. </member>
  4513. <member name="T:Google.Protobuf.Reflection.EnumDescriptorProto.Types">
  4514. <summary>Container for nested types declared in the EnumDescriptorProto message type.</summary>
  4515. </member>
  4516. <member name="T:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange">
  4517. <summary>
  4518. Range of reserved numeric values. Reserved values may not be used by
  4519. entries in the same enum. Reserved ranges may not overlap.
  4520. Note that this is distinct from DescriptorProto.ReservedRange in that it
  4521. is inclusive such that it can appropriately represent the entire int32
  4522. domain.
  4523. </summary>
  4524. </member>
  4525. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.StartFieldNumber">
  4526. <summary>Field number for the "start" field.</summary>
  4527. </member>
  4528. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.Start">
  4529. <summary>
  4530. Inclusive.
  4531. </summary>
  4532. </member>
  4533. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.HasStart">
  4534. <summary>Gets whether the "start" field is set</summary>
  4535. </member>
  4536. <member name="M:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.ClearStart">
  4537. <summary>Clears the value of the "start" field</summary>
  4538. </member>
  4539. <member name="F:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.EndFieldNumber">
  4540. <summary>Field number for the "end" field.</summary>
  4541. </member>
  4542. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.End">
  4543. <summary>
  4544. Inclusive.
  4545. </summary>
  4546. </member>
  4547. <member name="P:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.HasEnd">
  4548. <summary>Gets whether the "end" field is set</summary>
  4549. </member>
  4550. <member name="M:Google.Protobuf.Reflection.EnumDescriptorProto.Types.EnumReservedRange.ClearEnd">
  4551. <summary>Clears the value of the "end" field</summary>
  4552. </member>
  4553. <member name="T:Google.Protobuf.Reflection.EnumValueDescriptorProto">
  4554. <summary>
  4555. Describes a value within an enum.
  4556. </summary>
  4557. </member>
  4558. <member name="F:Google.Protobuf.Reflection.EnumValueDescriptorProto.NameFieldNumber">
  4559. <summary>Field number for the "name" field.</summary>
  4560. </member>
  4561. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptorProto.HasName">
  4562. <summary>Gets whether the "name" field is set</summary>
  4563. </member>
  4564. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptorProto.ClearName">
  4565. <summary>Clears the value of the "name" field</summary>
  4566. </member>
  4567. <member name="F:Google.Protobuf.Reflection.EnumValueDescriptorProto.NumberFieldNumber">
  4568. <summary>Field number for the "number" field.</summary>
  4569. </member>
  4570. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptorProto.HasNumber">
  4571. <summary>Gets whether the "number" field is set</summary>
  4572. </member>
  4573. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptorProto.ClearNumber">
  4574. <summary>Clears the value of the "number" field</summary>
  4575. </member>
  4576. <member name="F:Google.Protobuf.Reflection.EnumValueDescriptorProto.OptionsFieldNumber">
  4577. <summary>Field number for the "options" field.</summary>
  4578. </member>
  4579. <member name="T:Google.Protobuf.Reflection.ServiceDescriptorProto">
  4580. <summary>
  4581. Describes a service.
  4582. </summary>
  4583. </member>
  4584. <member name="F:Google.Protobuf.Reflection.ServiceDescriptorProto.NameFieldNumber">
  4585. <summary>Field number for the "name" field.</summary>
  4586. </member>
  4587. <member name="P:Google.Protobuf.Reflection.ServiceDescriptorProto.HasName">
  4588. <summary>Gets whether the "name" field is set</summary>
  4589. </member>
  4590. <member name="M:Google.Protobuf.Reflection.ServiceDescriptorProto.ClearName">
  4591. <summary>Clears the value of the "name" field</summary>
  4592. </member>
  4593. <member name="F:Google.Protobuf.Reflection.ServiceDescriptorProto.MethodFieldNumber">
  4594. <summary>Field number for the "method" field.</summary>
  4595. </member>
  4596. <member name="F:Google.Protobuf.Reflection.ServiceDescriptorProto.OptionsFieldNumber">
  4597. <summary>Field number for the "options" field.</summary>
  4598. </member>
  4599. <member name="T:Google.Protobuf.Reflection.MethodDescriptorProto">
  4600. <summary>
  4601. Describes a method of a service.
  4602. </summary>
  4603. </member>
  4604. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.NameFieldNumber">
  4605. <summary>Field number for the "name" field.</summary>
  4606. </member>
  4607. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasName">
  4608. <summary>Gets whether the "name" field is set</summary>
  4609. </member>
  4610. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearName">
  4611. <summary>Clears the value of the "name" field</summary>
  4612. </member>
  4613. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.InputTypeFieldNumber">
  4614. <summary>Field number for the "input_type" field.</summary>
  4615. </member>
  4616. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.InputType">
  4617. <summary>
  4618. Input and output type names. These are resolved in the same way as
  4619. FieldDescriptorProto.type_name, but must refer to a message type.
  4620. </summary>
  4621. </member>
  4622. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasInputType">
  4623. <summary>Gets whether the "input_type" field is set</summary>
  4624. </member>
  4625. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearInputType">
  4626. <summary>Clears the value of the "input_type" field</summary>
  4627. </member>
  4628. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.OutputTypeFieldNumber">
  4629. <summary>Field number for the "output_type" field.</summary>
  4630. </member>
  4631. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasOutputType">
  4632. <summary>Gets whether the "output_type" field is set</summary>
  4633. </member>
  4634. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearOutputType">
  4635. <summary>Clears the value of the "output_type" field</summary>
  4636. </member>
  4637. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.OptionsFieldNumber">
  4638. <summary>Field number for the "options" field.</summary>
  4639. </member>
  4640. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.ClientStreamingFieldNumber">
  4641. <summary>Field number for the "client_streaming" field.</summary>
  4642. </member>
  4643. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.ClientStreaming">
  4644. <summary>
  4645. Identifies if client streams multiple client messages
  4646. </summary>
  4647. </member>
  4648. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasClientStreaming">
  4649. <summary>Gets whether the "client_streaming" field is set</summary>
  4650. </member>
  4651. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearClientStreaming">
  4652. <summary>Clears the value of the "client_streaming" field</summary>
  4653. </member>
  4654. <member name="F:Google.Protobuf.Reflection.MethodDescriptorProto.ServerStreamingFieldNumber">
  4655. <summary>Field number for the "server_streaming" field.</summary>
  4656. </member>
  4657. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.ServerStreaming">
  4658. <summary>
  4659. Identifies if server streams multiple server messages
  4660. </summary>
  4661. </member>
  4662. <member name="P:Google.Protobuf.Reflection.MethodDescriptorProto.HasServerStreaming">
  4663. <summary>Gets whether the "server_streaming" field is set</summary>
  4664. </member>
  4665. <member name="M:Google.Protobuf.Reflection.MethodDescriptorProto.ClearServerStreaming">
  4666. <summary>Clears the value of the "server_streaming" field</summary>
  4667. </member>
  4668. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaPackageFieldNumber">
  4669. <summary>Field number for the "java_package" field.</summary>
  4670. </member>
  4671. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaPackage">
  4672. <summary>
  4673. Sets the Java package where classes generated from this .proto will be
  4674. placed. By default, the proto package is used, but this is often
  4675. inappropriate because proto packages do not normally start with backwards
  4676. domain names.
  4677. </summary>
  4678. </member>
  4679. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaPackage">
  4680. <summary>Gets whether the "java_package" field is set</summary>
  4681. </member>
  4682. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaPackage">
  4683. <summary>Clears the value of the "java_package" field</summary>
  4684. </member>
  4685. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaOuterClassnameFieldNumber">
  4686. <summary>Field number for the "java_outer_classname" field.</summary>
  4687. </member>
  4688. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaOuterClassname">
  4689. <summary>
  4690. Controls the name of the wrapper Java class generated for the .proto file.
  4691. That class will always contain the .proto file's getDescriptor() method as
  4692. well as any top-level extensions defined in the .proto file.
  4693. If java_multiple_files is disabled, then all the other classes from the
  4694. .proto file will be nested inside the single wrapper outer class.
  4695. </summary>
  4696. </member>
  4697. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaOuterClassname">
  4698. <summary>Gets whether the "java_outer_classname" field is set</summary>
  4699. </member>
  4700. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaOuterClassname">
  4701. <summary>Clears the value of the "java_outer_classname" field</summary>
  4702. </member>
  4703. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaMultipleFilesFieldNumber">
  4704. <summary>Field number for the "java_multiple_files" field.</summary>
  4705. </member>
  4706. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaMultipleFiles">
  4707. <summary>
  4708. If enabled, then the Java code generator will generate a separate .java
  4709. file for each top-level message, enum, and service defined in the .proto
  4710. file. Thus, these types will *not* be nested inside the wrapper class
  4711. named by java_outer_classname. However, the wrapper class will still be
  4712. generated to contain the file's getDescriptor() method as well as any
  4713. top-level extensions defined in the file.
  4714. </summary>
  4715. </member>
  4716. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaMultipleFiles">
  4717. <summary>Gets whether the "java_multiple_files" field is set</summary>
  4718. </member>
  4719. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaMultipleFiles">
  4720. <summary>Clears the value of the "java_multiple_files" field</summary>
  4721. </member>
  4722. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaGenerateEqualsAndHashFieldNumber">
  4723. <summary>Field number for the "java_generate_equals_and_hash" field.</summary>
  4724. </member>
  4725. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaGenerateEqualsAndHash">
  4726. <summary>
  4727. This option does nothing.
  4728. </summary>
  4729. </member>
  4730. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaGenerateEqualsAndHash">
  4731. <summary>Gets whether the "java_generate_equals_and_hash" field is set</summary>
  4732. </member>
  4733. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaGenerateEqualsAndHash">
  4734. <summary>Clears the value of the "java_generate_equals_and_hash" field</summary>
  4735. </member>
  4736. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaStringCheckUtf8FieldNumber">
  4737. <summary>Field number for the "java_string_check_utf8" field.</summary>
  4738. </member>
  4739. <member name="P:Google.Protobuf.Reflection.FileOptions.JavaStringCheckUtf8">
  4740. <summary>
  4741. If set true, then the Java2 code generator will generate code that
  4742. throws an exception whenever an attempt is made to assign a non-UTF-8
  4743. byte sequence to a string field.
  4744. Message reflection will do the same.
  4745. However, an extension field still accepts non-UTF-8 byte sequences.
  4746. This option has no effect on when used with the lite runtime.
  4747. </summary>
  4748. </member>
  4749. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaStringCheckUtf8">
  4750. <summary>Gets whether the "java_string_check_utf8" field is set</summary>
  4751. </member>
  4752. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaStringCheckUtf8">
  4753. <summary>Clears the value of the "java_string_check_utf8" field</summary>
  4754. </member>
  4755. <member name="F:Google.Protobuf.Reflection.FileOptions.OptimizeForFieldNumber">
  4756. <summary>Field number for the "optimize_for" field.</summary>
  4757. </member>
  4758. <member name="P:Google.Protobuf.Reflection.FileOptions.HasOptimizeFor">
  4759. <summary>Gets whether the "optimize_for" field is set</summary>
  4760. </member>
  4761. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearOptimizeFor">
  4762. <summary>Clears the value of the "optimize_for" field</summary>
  4763. </member>
  4764. <member name="F:Google.Protobuf.Reflection.FileOptions.GoPackageFieldNumber">
  4765. <summary>Field number for the "go_package" field.</summary>
  4766. </member>
  4767. <member name="P:Google.Protobuf.Reflection.FileOptions.GoPackage">
  4768. <summary>
  4769. Sets the Go package where structs generated from this .proto will be
  4770. placed. If omitted, the Go package will be derived from the following:
  4771. - The basename of the package import path, if provided.
  4772. - Otherwise, the package statement in the .proto file, if present.
  4773. - Otherwise, the basename of the .proto file, without extension.
  4774. </summary>
  4775. </member>
  4776. <member name="P:Google.Protobuf.Reflection.FileOptions.HasGoPackage">
  4777. <summary>Gets whether the "go_package" field is set</summary>
  4778. </member>
  4779. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearGoPackage">
  4780. <summary>Clears the value of the "go_package" field</summary>
  4781. </member>
  4782. <member name="F:Google.Protobuf.Reflection.FileOptions.CcGenericServicesFieldNumber">
  4783. <summary>Field number for the "cc_generic_services" field.</summary>
  4784. </member>
  4785. <member name="P:Google.Protobuf.Reflection.FileOptions.CcGenericServices">
  4786. <summary>
  4787. Should generic services be generated in each language? "Generic" services
  4788. are not specific to any particular RPC system. They are generated by the
  4789. main code generators in each language (without additional plugins).
  4790. Generic services were the only kind of service generation supported by
  4791. early versions of google.protobuf.
  4792. Generic services are now considered deprecated in favor of using plugins
  4793. that generate code specific to your particular RPC system. Therefore,
  4794. these default to false. Old code which depends on generic services should
  4795. explicitly set them to true.
  4796. </summary>
  4797. </member>
  4798. <member name="P:Google.Protobuf.Reflection.FileOptions.HasCcGenericServices">
  4799. <summary>Gets whether the "cc_generic_services" field is set</summary>
  4800. </member>
  4801. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearCcGenericServices">
  4802. <summary>Clears the value of the "cc_generic_services" field</summary>
  4803. </member>
  4804. <member name="F:Google.Protobuf.Reflection.FileOptions.JavaGenericServicesFieldNumber">
  4805. <summary>Field number for the "java_generic_services" field.</summary>
  4806. </member>
  4807. <member name="P:Google.Protobuf.Reflection.FileOptions.HasJavaGenericServices">
  4808. <summary>Gets whether the "java_generic_services" field is set</summary>
  4809. </member>
  4810. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearJavaGenericServices">
  4811. <summary>Clears the value of the "java_generic_services" field</summary>
  4812. </member>
  4813. <member name="F:Google.Protobuf.Reflection.FileOptions.PyGenericServicesFieldNumber">
  4814. <summary>Field number for the "py_generic_services" field.</summary>
  4815. </member>
  4816. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPyGenericServices">
  4817. <summary>Gets whether the "py_generic_services" field is set</summary>
  4818. </member>
  4819. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPyGenericServices">
  4820. <summary>Clears the value of the "py_generic_services" field</summary>
  4821. </member>
  4822. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpGenericServicesFieldNumber">
  4823. <summary>Field number for the "php_generic_services" field.</summary>
  4824. </member>
  4825. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpGenericServices">
  4826. <summary>Gets whether the "php_generic_services" field is set</summary>
  4827. </member>
  4828. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpGenericServices">
  4829. <summary>Clears the value of the "php_generic_services" field</summary>
  4830. </member>
  4831. <member name="F:Google.Protobuf.Reflection.FileOptions.DeprecatedFieldNumber">
  4832. <summary>Field number for the "deprecated" field.</summary>
  4833. </member>
  4834. <member name="P:Google.Protobuf.Reflection.FileOptions.Deprecated">
  4835. <summary>
  4836. Is this file deprecated?
  4837. Depending on the target platform, this can emit Deprecated annotations
  4838. for everything in the file, or it will be completely ignored; in the very
  4839. least, this is a formalization for deprecating files.
  4840. </summary>
  4841. </member>
  4842. <member name="P:Google.Protobuf.Reflection.FileOptions.HasDeprecated">
  4843. <summary>Gets whether the "deprecated" field is set</summary>
  4844. </member>
  4845. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearDeprecated">
  4846. <summary>Clears the value of the "deprecated" field</summary>
  4847. </member>
  4848. <member name="F:Google.Protobuf.Reflection.FileOptions.CcEnableArenasFieldNumber">
  4849. <summary>Field number for the "cc_enable_arenas" field.</summary>
  4850. </member>
  4851. <member name="P:Google.Protobuf.Reflection.FileOptions.CcEnableArenas">
  4852. <summary>
  4853. Enables the use of arenas for the proto messages in this file. This applies
  4854. only to generated classes for C++.
  4855. </summary>
  4856. </member>
  4857. <member name="P:Google.Protobuf.Reflection.FileOptions.HasCcEnableArenas">
  4858. <summary>Gets whether the "cc_enable_arenas" field is set</summary>
  4859. </member>
  4860. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearCcEnableArenas">
  4861. <summary>Clears the value of the "cc_enable_arenas" field</summary>
  4862. </member>
  4863. <member name="F:Google.Protobuf.Reflection.FileOptions.ObjcClassPrefixFieldNumber">
  4864. <summary>Field number for the "objc_class_prefix" field.</summary>
  4865. </member>
  4866. <member name="P:Google.Protobuf.Reflection.FileOptions.ObjcClassPrefix">
  4867. <summary>
  4868. Sets the objective c class prefix which is prepended to all objective c
  4869. generated classes from this .proto. There is no default.
  4870. </summary>
  4871. </member>
  4872. <member name="P:Google.Protobuf.Reflection.FileOptions.HasObjcClassPrefix">
  4873. <summary>Gets whether the "objc_class_prefix" field is set</summary>
  4874. </member>
  4875. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearObjcClassPrefix">
  4876. <summary>Clears the value of the "objc_class_prefix" field</summary>
  4877. </member>
  4878. <member name="F:Google.Protobuf.Reflection.FileOptions.CsharpNamespaceFieldNumber">
  4879. <summary>Field number for the "csharp_namespace" field.</summary>
  4880. </member>
  4881. <member name="P:Google.Protobuf.Reflection.FileOptions.CsharpNamespace">
  4882. <summary>
  4883. Namespace for generated classes; defaults to the package.
  4884. </summary>
  4885. </member>
  4886. <member name="P:Google.Protobuf.Reflection.FileOptions.HasCsharpNamespace">
  4887. <summary>Gets whether the "csharp_namespace" field is set</summary>
  4888. </member>
  4889. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearCsharpNamespace">
  4890. <summary>Clears the value of the "csharp_namespace" field</summary>
  4891. </member>
  4892. <member name="F:Google.Protobuf.Reflection.FileOptions.SwiftPrefixFieldNumber">
  4893. <summary>Field number for the "swift_prefix" field.</summary>
  4894. </member>
  4895. <member name="P:Google.Protobuf.Reflection.FileOptions.SwiftPrefix">
  4896. <summary>
  4897. By default Swift generators will take the proto package and CamelCase it
  4898. replacing '.' with underscore and use that to prefix the types/symbols
  4899. defined. When this options is provided, they will use this value instead
  4900. to prefix the types/symbols defined.
  4901. </summary>
  4902. </member>
  4903. <member name="P:Google.Protobuf.Reflection.FileOptions.HasSwiftPrefix">
  4904. <summary>Gets whether the "swift_prefix" field is set</summary>
  4905. </member>
  4906. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearSwiftPrefix">
  4907. <summary>Clears the value of the "swift_prefix" field</summary>
  4908. </member>
  4909. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpClassPrefixFieldNumber">
  4910. <summary>Field number for the "php_class_prefix" field.</summary>
  4911. </member>
  4912. <member name="P:Google.Protobuf.Reflection.FileOptions.PhpClassPrefix">
  4913. <summary>
  4914. Sets the php class prefix which is prepended to all php generated classes
  4915. from this .proto. Default is empty.
  4916. </summary>
  4917. </member>
  4918. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpClassPrefix">
  4919. <summary>Gets whether the "php_class_prefix" field is set</summary>
  4920. </member>
  4921. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpClassPrefix">
  4922. <summary>Clears the value of the "php_class_prefix" field</summary>
  4923. </member>
  4924. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpNamespaceFieldNumber">
  4925. <summary>Field number for the "php_namespace" field.</summary>
  4926. </member>
  4927. <member name="P:Google.Protobuf.Reflection.FileOptions.PhpNamespace">
  4928. <summary>
  4929. Use this option to change the namespace of php generated classes. Default
  4930. is empty. When this option is empty, the package name will be used for
  4931. determining the namespace.
  4932. </summary>
  4933. </member>
  4934. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpNamespace">
  4935. <summary>Gets whether the "php_namespace" field is set</summary>
  4936. </member>
  4937. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpNamespace">
  4938. <summary>Clears the value of the "php_namespace" field</summary>
  4939. </member>
  4940. <member name="F:Google.Protobuf.Reflection.FileOptions.PhpMetadataNamespaceFieldNumber">
  4941. <summary>Field number for the "php_metadata_namespace" field.</summary>
  4942. </member>
  4943. <member name="P:Google.Protobuf.Reflection.FileOptions.PhpMetadataNamespace">
  4944. <summary>
  4945. Use this option to change the namespace of php generated metadata classes.
  4946. Default is empty. When this option is empty, the proto file name will be
  4947. used for determining the namespace.
  4948. </summary>
  4949. </member>
  4950. <member name="P:Google.Protobuf.Reflection.FileOptions.HasPhpMetadataNamespace">
  4951. <summary>Gets whether the "php_metadata_namespace" field is set</summary>
  4952. </member>
  4953. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearPhpMetadataNamespace">
  4954. <summary>Clears the value of the "php_metadata_namespace" field</summary>
  4955. </member>
  4956. <member name="F:Google.Protobuf.Reflection.FileOptions.RubyPackageFieldNumber">
  4957. <summary>Field number for the "ruby_package" field.</summary>
  4958. </member>
  4959. <member name="P:Google.Protobuf.Reflection.FileOptions.RubyPackage">
  4960. <summary>
  4961. Use this option to change the package of ruby generated classes. Default
  4962. is empty. When this option is not set, the package name will be used for
  4963. determining the ruby package.
  4964. </summary>
  4965. </member>
  4966. <member name="P:Google.Protobuf.Reflection.FileOptions.HasRubyPackage">
  4967. <summary>Gets whether the "ruby_package" field is set</summary>
  4968. </member>
  4969. <member name="M:Google.Protobuf.Reflection.FileOptions.ClearRubyPackage">
  4970. <summary>Clears the value of the "ruby_package" field</summary>
  4971. </member>
  4972. <member name="F:Google.Protobuf.Reflection.FileOptions.UninterpretedOptionFieldNumber">
  4973. <summary>Field number for the "uninterpreted_option" field.</summary>
  4974. </member>
  4975. <member name="P:Google.Protobuf.Reflection.FileOptions.UninterpretedOption">
  4976. <summary>
  4977. The parser stores options it doesn't recognize here.
  4978. See the documentation for the "Options" section above.
  4979. </summary>
  4980. </member>
  4981. <member name="T:Google.Protobuf.Reflection.FileOptions.Types">
  4982. <summary>Container for nested types declared in the FileOptions message type.</summary>
  4983. </member>
  4984. <member name="T:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode">
  4985. <summary>
  4986. Generated classes can be optimized for speed or code size.
  4987. </summary>
  4988. </member>
  4989. <member name="F:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.Speed">
  4990. <summary>
  4991. Generate complete code for parsing, serialization,
  4992. </summary>
  4993. </member>
  4994. <member name="F:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.CodeSize">
  4995. <summary>
  4996. etc.
  4997. </summary>
  4998. </member>
  4999. <member name="F:Google.Protobuf.Reflection.FileOptions.Types.OptimizeMode.LiteRuntime">
  5000. <summary>
  5001. Generate code using MessageLite and the lite runtime.
  5002. </summary>
  5003. </member>
  5004. <member name="F:Google.Protobuf.Reflection.MessageOptions.MessageSetWireFormatFieldNumber">
  5005. <summary>Field number for the "message_set_wire_format" field.</summary>
  5006. </member>
  5007. <member name="P:Google.Protobuf.Reflection.MessageOptions.MessageSetWireFormat">
  5008. <summary>
  5009. Set true to use the old proto1 MessageSet wire format for extensions.
  5010. This is provided for backwards-compatibility with the MessageSet wire
  5011. format. You should not use this for any other reason: It's less
  5012. efficient, has fewer features, and is more complicated.
  5013. The message must be defined exactly as follows:
  5014. message Foo {
  5015. option message_set_wire_format = true;
  5016. extensions 4 to max;
  5017. }
  5018. Note that the message cannot have any defined fields; MessageSets only
  5019. have extensions.
  5020. All extensions of your type must be singular messages; e.g. they cannot
  5021. be int32s, enums, or repeated messages.
  5022. Because this is an option, the above two restrictions are not enforced by
  5023. the protocol compiler.
  5024. </summary>
  5025. </member>
  5026. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasMessageSetWireFormat">
  5027. <summary>Gets whether the "message_set_wire_format" field is set</summary>
  5028. </member>
  5029. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearMessageSetWireFormat">
  5030. <summary>Clears the value of the "message_set_wire_format" field</summary>
  5031. </member>
  5032. <member name="F:Google.Protobuf.Reflection.MessageOptions.NoStandardDescriptorAccessorFieldNumber">
  5033. <summary>Field number for the "no_standard_descriptor_accessor" field.</summary>
  5034. </member>
  5035. <member name="P:Google.Protobuf.Reflection.MessageOptions.NoStandardDescriptorAccessor">
  5036. <summary>
  5037. Disables the generation of the standard "descriptor()" accessor, which can
  5038. conflict with a field of the same name. This is meant to make migration
  5039. from proto1 easier; new code should avoid fields named "descriptor".
  5040. </summary>
  5041. </member>
  5042. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasNoStandardDescriptorAccessor">
  5043. <summary>Gets whether the "no_standard_descriptor_accessor" field is set</summary>
  5044. </member>
  5045. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearNoStandardDescriptorAccessor">
  5046. <summary>Clears the value of the "no_standard_descriptor_accessor" field</summary>
  5047. </member>
  5048. <member name="F:Google.Protobuf.Reflection.MessageOptions.DeprecatedFieldNumber">
  5049. <summary>Field number for the "deprecated" field.</summary>
  5050. </member>
  5051. <member name="P:Google.Protobuf.Reflection.MessageOptions.Deprecated">
  5052. <summary>
  5053. Is this message deprecated?
  5054. Depending on the target platform, this can emit Deprecated annotations
  5055. for the message, or it will be completely ignored; in the very least,
  5056. this is a formalization for deprecating messages.
  5057. </summary>
  5058. </member>
  5059. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasDeprecated">
  5060. <summary>Gets whether the "deprecated" field is set</summary>
  5061. </member>
  5062. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearDeprecated">
  5063. <summary>Clears the value of the "deprecated" field</summary>
  5064. </member>
  5065. <member name="F:Google.Protobuf.Reflection.MessageOptions.MapEntryFieldNumber">
  5066. <summary>Field number for the "map_entry" field.</summary>
  5067. </member>
  5068. <member name="P:Google.Protobuf.Reflection.MessageOptions.MapEntry">
  5069. <summary>
  5070. Whether the message is an automatically generated map entry type for the
  5071. maps field.
  5072. For maps fields:
  5073. map&lt;KeyType, ValueType> map_field = 1;
  5074. The parsed descriptor looks like:
  5075. message MapFieldEntry {
  5076. option map_entry = true;
  5077. optional KeyType key = 1;
  5078. optional ValueType value = 2;
  5079. }
  5080. repeated MapFieldEntry map_field = 1;
  5081. Implementations may choose not to generate the map_entry=true message, but
  5082. use a native map in the target language to hold the keys and values.
  5083. The reflection APIs in such implementations still need to work as
  5084. if the field is a repeated message field.
  5085. NOTE: Do not set the option in .proto files. Always use the maps syntax
  5086. instead. The option should only be implicitly set by the proto compiler
  5087. parser.
  5088. </summary>
  5089. </member>
  5090. <member name="P:Google.Protobuf.Reflection.MessageOptions.HasMapEntry">
  5091. <summary>Gets whether the "map_entry" field is set</summary>
  5092. </member>
  5093. <member name="M:Google.Protobuf.Reflection.MessageOptions.ClearMapEntry">
  5094. <summary>Clears the value of the "map_entry" field</summary>
  5095. </member>
  5096. <member name="F:Google.Protobuf.Reflection.MessageOptions.UninterpretedOptionFieldNumber">
  5097. <summary>Field number for the "uninterpreted_option" field.</summary>
  5098. </member>
  5099. <member name="P:Google.Protobuf.Reflection.MessageOptions.UninterpretedOption">
  5100. <summary>
  5101. The parser stores options it doesn't recognize here. See above.
  5102. </summary>
  5103. </member>
  5104. <member name="F:Google.Protobuf.Reflection.FieldOptions.CtypeFieldNumber">
  5105. <summary>Field number for the "ctype" field.</summary>
  5106. </member>
  5107. <member name="P:Google.Protobuf.Reflection.FieldOptions.Ctype">
  5108. <summary>
  5109. The ctype option instructs the C++ code generator to use a different
  5110. representation of the field than it normally would. See the specific
  5111. options below. This option is not yet implemented in the open source
  5112. release -- sorry, we'll try to include it in a future version!
  5113. </summary>
  5114. </member>
  5115. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasCtype">
  5116. <summary>Gets whether the "ctype" field is set</summary>
  5117. </member>
  5118. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearCtype">
  5119. <summary>Clears the value of the "ctype" field</summary>
  5120. </member>
  5121. <member name="F:Google.Protobuf.Reflection.FieldOptions.PackedFieldNumber">
  5122. <summary>Field number for the "packed" field.</summary>
  5123. </member>
  5124. <member name="P:Google.Protobuf.Reflection.FieldOptions.Packed">
  5125. <summary>
  5126. The packed option can be enabled for repeated primitive fields to enable
  5127. a more efficient representation on the wire. Rather than repeatedly
  5128. writing the tag and type for each element, the entire array is encoded as
  5129. a single length-delimited blob. In proto3, only explicit setting it to
  5130. false will avoid using packed encoding.
  5131. </summary>
  5132. </member>
  5133. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasPacked">
  5134. <summary>Gets whether the "packed" field is set</summary>
  5135. </member>
  5136. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearPacked">
  5137. <summary>Clears the value of the "packed" field</summary>
  5138. </member>
  5139. <member name="F:Google.Protobuf.Reflection.FieldOptions.JstypeFieldNumber">
  5140. <summary>Field number for the "jstype" field.</summary>
  5141. </member>
  5142. <member name="P:Google.Protobuf.Reflection.FieldOptions.Jstype">
  5143. <summary>
  5144. The jstype option determines the JavaScript type used for values of the
  5145. field. The option is permitted only for 64 bit integral and fixed types
  5146. (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
  5147. is represented as JavaScript string, which avoids loss of precision that
  5148. can happen when a large value is converted to a floating point JavaScript.
  5149. Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
  5150. use the JavaScript "number" type. The behavior of the default option
  5151. JS_NORMAL is implementation dependent.
  5152. This option is an enum to permit additional types to be added, e.g.
  5153. goog.math.Integer.
  5154. </summary>
  5155. </member>
  5156. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasJstype">
  5157. <summary>Gets whether the "jstype" field is set</summary>
  5158. </member>
  5159. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearJstype">
  5160. <summary>Clears the value of the "jstype" field</summary>
  5161. </member>
  5162. <member name="F:Google.Protobuf.Reflection.FieldOptions.LazyFieldNumber">
  5163. <summary>Field number for the "lazy" field.</summary>
  5164. </member>
  5165. <member name="P:Google.Protobuf.Reflection.FieldOptions.Lazy">
  5166. <summary>
  5167. Should this field be parsed lazily? Lazy applies only to message-type
  5168. fields. It means that when the outer message is initially parsed, the
  5169. inner message's contents will not be parsed but instead stored in encoded
  5170. form. The inner message will actually be parsed when it is first accessed.
  5171. This is only a hint. Implementations are free to choose whether to use
  5172. eager or lazy parsing regardless of the value of this option. However,
  5173. setting this option true suggests that the protocol author believes that
  5174. using lazy parsing on this field is worth the additional bookkeeping
  5175. overhead typically needed to implement it.
  5176. This option does not affect the public interface of any generated code;
  5177. all method signatures remain the same. Furthermore, thread-safety of the
  5178. interface is not affected by this option; const methods remain safe to
  5179. call from multiple threads concurrently, while non-const methods continue
  5180. to require exclusive access.
  5181. Note that implementations may choose not to check required fields within
  5182. a lazy sub-message. That is, calling IsInitialized() on the outer message
  5183. may return true even if the inner message has missing required fields.
  5184. This is necessary because otherwise the inner message would have to be
  5185. parsed in order to perform the check, defeating the purpose of lazy
  5186. parsing. An implementation which chooses not to check required fields
  5187. must be consistent about it. That is, for any particular sub-message, the
  5188. implementation must either *always* check its required fields, or *never*
  5189. check its required fields, regardless of whether or not the message has
  5190. been parsed.
  5191. </summary>
  5192. </member>
  5193. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasLazy">
  5194. <summary>Gets whether the "lazy" field is set</summary>
  5195. </member>
  5196. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearLazy">
  5197. <summary>Clears the value of the "lazy" field</summary>
  5198. </member>
  5199. <member name="F:Google.Protobuf.Reflection.FieldOptions.DeprecatedFieldNumber">
  5200. <summary>Field number for the "deprecated" field.</summary>
  5201. </member>
  5202. <member name="P:Google.Protobuf.Reflection.FieldOptions.Deprecated">
  5203. <summary>
  5204. Is this field deprecated?
  5205. Depending on the target platform, this can emit Deprecated annotations
  5206. for accessors, or it will be completely ignored; in the very least, this
  5207. is a formalization for deprecating fields.
  5208. </summary>
  5209. </member>
  5210. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasDeprecated">
  5211. <summary>Gets whether the "deprecated" field is set</summary>
  5212. </member>
  5213. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearDeprecated">
  5214. <summary>Clears the value of the "deprecated" field</summary>
  5215. </member>
  5216. <member name="F:Google.Protobuf.Reflection.FieldOptions.WeakFieldNumber">
  5217. <summary>Field number for the "weak" field.</summary>
  5218. </member>
  5219. <member name="P:Google.Protobuf.Reflection.FieldOptions.Weak">
  5220. <summary>
  5221. For Google-internal migration only. Do not use.
  5222. </summary>
  5223. </member>
  5224. <member name="P:Google.Protobuf.Reflection.FieldOptions.HasWeak">
  5225. <summary>Gets whether the "weak" field is set</summary>
  5226. </member>
  5227. <member name="M:Google.Protobuf.Reflection.FieldOptions.ClearWeak">
  5228. <summary>Clears the value of the "weak" field</summary>
  5229. </member>
  5230. <member name="F:Google.Protobuf.Reflection.FieldOptions.UninterpretedOptionFieldNumber">
  5231. <summary>Field number for the "uninterpreted_option" field.</summary>
  5232. </member>
  5233. <member name="P:Google.Protobuf.Reflection.FieldOptions.UninterpretedOption">
  5234. <summary>
  5235. The parser stores options it doesn't recognize here. See above.
  5236. </summary>
  5237. </member>
  5238. <member name="T:Google.Protobuf.Reflection.FieldOptions.Types">
  5239. <summary>Container for nested types declared in the FieldOptions message type.</summary>
  5240. </member>
  5241. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.CType.String">
  5242. <summary>
  5243. Default mode.
  5244. </summary>
  5245. </member>
  5246. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsNormal">
  5247. <summary>
  5248. Use the default type.
  5249. </summary>
  5250. </member>
  5251. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsString">
  5252. <summary>
  5253. Use JavaScript strings.
  5254. </summary>
  5255. </member>
  5256. <member name="F:Google.Protobuf.Reflection.FieldOptions.Types.JSType.JsNumber">
  5257. <summary>
  5258. Use JavaScript numbers.
  5259. </summary>
  5260. </member>
  5261. <member name="F:Google.Protobuf.Reflection.OneofOptions.UninterpretedOptionFieldNumber">
  5262. <summary>Field number for the "uninterpreted_option" field.</summary>
  5263. </member>
  5264. <member name="P:Google.Protobuf.Reflection.OneofOptions.UninterpretedOption">
  5265. <summary>
  5266. The parser stores options it doesn't recognize here. See above.
  5267. </summary>
  5268. </member>
  5269. <member name="F:Google.Protobuf.Reflection.EnumOptions.AllowAliasFieldNumber">
  5270. <summary>Field number for the "allow_alias" field.</summary>
  5271. </member>
  5272. <member name="P:Google.Protobuf.Reflection.EnumOptions.AllowAlias">
  5273. <summary>
  5274. Set this option to true to allow mapping different tag names to the same
  5275. value.
  5276. </summary>
  5277. </member>
  5278. <member name="P:Google.Protobuf.Reflection.EnumOptions.HasAllowAlias">
  5279. <summary>Gets whether the "allow_alias" field is set</summary>
  5280. </member>
  5281. <member name="M:Google.Protobuf.Reflection.EnumOptions.ClearAllowAlias">
  5282. <summary>Clears the value of the "allow_alias" field</summary>
  5283. </member>
  5284. <member name="F:Google.Protobuf.Reflection.EnumOptions.DeprecatedFieldNumber">
  5285. <summary>Field number for the "deprecated" field.</summary>
  5286. </member>
  5287. <member name="P:Google.Protobuf.Reflection.EnumOptions.Deprecated">
  5288. <summary>
  5289. Is this enum deprecated?
  5290. Depending on the target platform, this can emit Deprecated annotations
  5291. for the enum, or it will be completely ignored; in the very least, this
  5292. is a formalization for deprecating enums.
  5293. </summary>
  5294. </member>
  5295. <member name="P:Google.Protobuf.Reflection.EnumOptions.HasDeprecated">
  5296. <summary>Gets whether the "deprecated" field is set</summary>
  5297. </member>
  5298. <member name="M:Google.Protobuf.Reflection.EnumOptions.ClearDeprecated">
  5299. <summary>Clears the value of the "deprecated" field</summary>
  5300. </member>
  5301. <member name="F:Google.Protobuf.Reflection.EnumOptions.UninterpretedOptionFieldNumber">
  5302. <summary>Field number for the "uninterpreted_option" field.</summary>
  5303. </member>
  5304. <member name="P:Google.Protobuf.Reflection.EnumOptions.UninterpretedOption">
  5305. <summary>
  5306. The parser stores options it doesn't recognize here. See above.
  5307. </summary>
  5308. </member>
  5309. <member name="F:Google.Protobuf.Reflection.EnumValueOptions.DeprecatedFieldNumber">
  5310. <summary>Field number for the "deprecated" field.</summary>
  5311. </member>
  5312. <member name="P:Google.Protobuf.Reflection.EnumValueOptions.Deprecated">
  5313. <summary>
  5314. Is this enum value deprecated?
  5315. Depending on the target platform, this can emit Deprecated annotations
  5316. for the enum value, or it will be completely ignored; in the very least,
  5317. this is a formalization for deprecating enum values.
  5318. </summary>
  5319. </member>
  5320. <member name="P:Google.Protobuf.Reflection.EnumValueOptions.HasDeprecated">
  5321. <summary>Gets whether the "deprecated" field is set</summary>
  5322. </member>
  5323. <member name="M:Google.Protobuf.Reflection.EnumValueOptions.ClearDeprecated">
  5324. <summary>Clears the value of the "deprecated" field</summary>
  5325. </member>
  5326. <member name="F:Google.Protobuf.Reflection.EnumValueOptions.UninterpretedOptionFieldNumber">
  5327. <summary>Field number for the "uninterpreted_option" field.</summary>
  5328. </member>
  5329. <member name="P:Google.Protobuf.Reflection.EnumValueOptions.UninterpretedOption">
  5330. <summary>
  5331. The parser stores options it doesn't recognize here. See above.
  5332. </summary>
  5333. </member>
  5334. <member name="F:Google.Protobuf.Reflection.ServiceOptions.DeprecatedFieldNumber">
  5335. <summary>Field number for the "deprecated" field.</summary>
  5336. </member>
  5337. <member name="P:Google.Protobuf.Reflection.ServiceOptions.Deprecated">
  5338. <summary>
  5339. Is this service deprecated?
  5340. Depending on the target platform, this can emit Deprecated annotations
  5341. for the service, or it will be completely ignored; in the very least,
  5342. this is a formalization for deprecating services.
  5343. </summary>
  5344. </member>
  5345. <member name="P:Google.Protobuf.Reflection.ServiceOptions.HasDeprecated">
  5346. <summary>Gets whether the "deprecated" field is set</summary>
  5347. </member>
  5348. <member name="M:Google.Protobuf.Reflection.ServiceOptions.ClearDeprecated">
  5349. <summary>Clears the value of the "deprecated" field</summary>
  5350. </member>
  5351. <member name="F:Google.Protobuf.Reflection.ServiceOptions.UninterpretedOptionFieldNumber">
  5352. <summary>Field number for the "uninterpreted_option" field.</summary>
  5353. </member>
  5354. <member name="P:Google.Protobuf.Reflection.ServiceOptions.UninterpretedOption">
  5355. <summary>
  5356. The parser stores options it doesn't recognize here. See above.
  5357. </summary>
  5358. </member>
  5359. <member name="F:Google.Protobuf.Reflection.MethodOptions.DeprecatedFieldNumber">
  5360. <summary>Field number for the "deprecated" field.</summary>
  5361. </member>
  5362. <member name="P:Google.Protobuf.Reflection.MethodOptions.Deprecated">
  5363. <summary>
  5364. Is this method deprecated?
  5365. Depending on the target platform, this can emit Deprecated annotations
  5366. for the method, or it will be completely ignored; in the very least,
  5367. this is a formalization for deprecating methods.
  5368. </summary>
  5369. </member>
  5370. <member name="P:Google.Protobuf.Reflection.MethodOptions.HasDeprecated">
  5371. <summary>Gets whether the "deprecated" field is set</summary>
  5372. </member>
  5373. <member name="M:Google.Protobuf.Reflection.MethodOptions.ClearDeprecated">
  5374. <summary>Clears the value of the "deprecated" field</summary>
  5375. </member>
  5376. <member name="F:Google.Protobuf.Reflection.MethodOptions.IdempotencyLevelFieldNumber">
  5377. <summary>Field number for the "idempotency_level" field.</summary>
  5378. </member>
  5379. <member name="P:Google.Protobuf.Reflection.MethodOptions.HasIdempotencyLevel">
  5380. <summary>Gets whether the "idempotency_level" field is set</summary>
  5381. </member>
  5382. <member name="M:Google.Protobuf.Reflection.MethodOptions.ClearIdempotencyLevel">
  5383. <summary>Clears the value of the "idempotency_level" field</summary>
  5384. </member>
  5385. <member name="F:Google.Protobuf.Reflection.MethodOptions.UninterpretedOptionFieldNumber">
  5386. <summary>Field number for the "uninterpreted_option" field.</summary>
  5387. </member>
  5388. <member name="P:Google.Protobuf.Reflection.MethodOptions.UninterpretedOption">
  5389. <summary>
  5390. The parser stores options it doesn't recognize here. See above.
  5391. </summary>
  5392. </member>
  5393. <member name="T:Google.Protobuf.Reflection.MethodOptions.Types">
  5394. <summary>Container for nested types declared in the MethodOptions message type.</summary>
  5395. </member>
  5396. <member name="T:Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel">
  5397. <summary>
  5398. Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
  5399. or neither? HTTP based RPC implementation may choose GET verb for safe
  5400. methods, and PUT verb for idempotent methods instead of the default POST.
  5401. </summary>
  5402. </member>
  5403. <member name="F:Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel.NoSideEffects">
  5404. <summary>
  5405. implies idempotent
  5406. </summary>
  5407. </member>
  5408. <member name="F:Google.Protobuf.Reflection.MethodOptions.Types.IdempotencyLevel.Idempotent">
  5409. <summary>
  5410. idempotent, but may have side effects
  5411. </summary>
  5412. </member>
  5413. <member name="T:Google.Protobuf.Reflection.UninterpretedOption">
  5414. <summary>
  5415. A message representing a option the parser does not recognize. This only
  5416. appears in options protos created by the compiler::Parser class.
  5417. DescriptorPool resolves these when building Descriptor objects. Therefore,
  5418. options protos in descriptor objects (e.g. returned by Descriptor::options(),
  5419. or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
  5420. in them.
  5421. </summary>
  5422. </member>
  5423. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.NameFieldNumber">
  5424. <summary>Field number for the "name" field.</summary>
  5425. </member>
  5426. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.IdentifierValueFieldNumber">
  5427. <summary>Field number for the "identifier_value" field.</summary>
  5428. </member>
  5429. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.IdentifierValue">
  5430. <summary>
  5431. The value of the uninterpreted option, in whatever type the tokenizer
  5432. identified it as during parsing. Exactly one of these should be set.
  5433. </summary>
  5434. </member>
  5435. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasIdentifierValue">
  5436. <summary>Gets whether the "identifier_value" field is set</summary>
  5437. </member>
  5438. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearIdentifierValue">
  5439. <summary>Clears the value of the "identifier_value" field</summary>
  5440. </member>
  5441. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.PositiveIntValueFieldNumber">
  5442. <summary>Field number for the "positive_int_value" field.</summary>
  5443. </member>
  5444. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasPositiveIntValue">
  5445. <summary>Gets whether the "positive_int_value" field is set</summary>
  5446. </member>
  5447. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearPositiveIntValue">
  5448. <summary>Clears the value of the "positive_int_value" field</summary>
  5449. </member>
  5450. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.NegativeIntValueFieldNumber">
  5451. <summary>Field number for the "negative_int_value" field.</summary>
  5452. </member>
  5453. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasNegativeIntValue">
  5454. <summary>Gets whether the "negative_int_value" field is set</summary>
  5455. </member>
  5456. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearNegativeIntValue">
  5457. <summary>Clears the value of the "negative_int_value" field</summary>
  5458. </member>
  5459. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.DoubleValueFieldNumber">
  5460. <summary>Field number for the "double_value" field.</summary>
  5461. </member>
  5462. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasDoubleValue">
  5463. <summary>Gets whether the "double_value" field is set</summary>
  5464. </member>
  5465. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearDoubleValue">
  5466. <summary>Clears the value of the "double_value" field</summary>
  5467. </member>
  5468. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.StringValueFieldNumber">
  5469. <summary>Field number for the "string_value" field.</summary>
  5470. </member>
  5471. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasStringValue">
  5472. <summary>Gets whether the "string_value" field is set</summary>
  5473. </member>
  5474. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearStringValue">
  5475. <summary>Clears the value of the "string_value" field</summary>
  5476. </member>
  5477. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.AggregateValueFieldNumber">
  5478. <summary>Field number for the "aggregate_value" field.</summary>
  5479. </member>
  5480. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.HasAggregateValue">
  5481. <summary>Gets whether the "aggregate_value" field is set</summary>
  5482. </member>
  5483. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.ClearAggregateValue">
  5484. <summary>Clears the value of the "aggregate_value" field</summary>
  5485. </member>
  5486. <member name="T:Google.Protobuf.Reflection.UninterpretedOption.Types">
  5487. <summary>Container for nested types declared in the UninterpretedOption message type.</summary>
  5488. </member>
  5489. <member name="T:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart">
  5490. <summary>
  5491. The name of the uninterpreted option. Each string represents a segment in
  5492. a dot-separated name. is_extension is true iff a segment represents an
  5493. extension (denoted with parentheses in options specs in .proto files).
  5494. E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents
  5495. "foo.(bar.baz).qux".
  5496. </summary>
  5497. </member>
  5498. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.NamePart_FieldNumber">
  5499. <summary>Field number for the "name_part" field.</summary>
  5500. </member>
  5501. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.HasNamePart_">
  5502. <summary>Gets whether the "name_part" field is set</summary>
  5503. </member>
  5504. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.ClearNamePart_">
  5505. <summary>Clears the value of the "name_part" field</summary>
  5506. </member>
  5507. <member name="F:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.IsExtensionFieldNumber">
  5508. <summary>Field number for the "is_extension" field.</summary>
  5509. </member>
  5510. <member name="P:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.HasIsExtension">
  5511. <summary>Gets whether the "is_extension" field is set</summary>
  5512. </member>
  5513. <member name="M:Google.Protobuf.Reflection.UninterpretedOption.Types.NamePart.ClearIsExtension">
  5514. <summary>Clears the value of the "is_extension" field</summary>
  5515. </member>
  5516. <member name="T:Google.Protobuf.Reflection.SourceCodeInfo">
  5517. <summary>
  5518. Encapsulates information about the original source file from which a
  5519. FileDescriptorProto was generated.
  5520. </summary>
  5521. </member>
  5522. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.LocationFieldNumber">
  5523. <summary>Field number for the "location" field.</summary>
  5524. </member>
  5525. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Location">
  5526. <summary>
  5527. A Location identifies a piece of source code in a .proto file which
  5528. corresponds to a particular definition. This information is intended
  5529. to be useful to IDEs, code indexers, documentation generators, and similar
  5530. tools.
  5531. For example, say we have a file like:
  5532. message Foo {
  5533. optional string foo = 1;
  5534. }
  5535. Let's look at just the field definition:
  5536. optional string foo = 1;
  5537. ^ ^^ ^^ ^ ^^^
  5538. a bc de f ghi
  5539. We have the following locations:
  5540. span path represents
  5541. [a,i) [ 4, 0, 2, 0 ] The whole field definition.
  5542. [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
  5543. [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
  5544. [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
  5545. [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
  5546. Notes:
  5547. - A location may refer to a repeated field itself (i.e. not to any
  5548. particular index within it). This is used whenever a set of elements are
  5549. logically enclosed in a single code segment. For example, an entire
  5550. extend block (possibly containing multiple extension definitions) will
  5551. have an outer location whose path refers to the "extensions" repeated
  5552. field without an index.
  5553. - Multiple locations may have the same path. This happens when a single
  5554. logical declaration is spread out across multiple places. The most
  5555. obvious example is the "extend" block again -- there may be multiple
  5556. extend blocks in the same scope, each of which will have the same path.
  5557. - A location's span is not always a subset of its parent's span. For
  5558. example, the "extendee" of an extension declaration appears at the
  5559. beginning of the "extend" block and is shared by all extensions within
  5560. the block.
  5561. - Just because a location's span is a subset of some other location's span
  5562. does not mean that it is a descendant. For example, a "group" defines
  5563. both a type and a field in a single declaration. Thus, the locations
  5564. corresponding to the type and field and their components will overlap.
  5565. - Code which tries to interpret locations should probably be designed to
  5566. ignore those that it doesn't understand, as more types of locations could
  5567. be recorded in the future.
  5568. </summary>
  5569. </member>
  5570. <member name="T:Google.Protobuf.Reflection.SourceCodeInfo.Types">
  5571. <summary>Container for nested types declared in the SourceCodeInfo message type.</summary>
  5572. </member>
  5573. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.PathFieldNumber">
  5574. <summary>Field number for the "path" field.</summary>
  5575. </member>
  5576. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.Path">
  5577. <summary>
  5578. Identifies which part of the FileDescriptorProto was defined at this
  5579. location.
  5580. Each element is a field number or an index. They form a path from
  5581. the root FileDescriptorProto to the place where the definition. For
  5582. example, this path:
  5583. [ 4, 3, 2, 7, 1 ]
  5584. refers to:
  5585. file.message_type(3) // 4, 3
  5586. .field(7) // 2, 7
  5587. .name() // 1
  5588. This is because FileDescriptorProto.message_type has field number 4:
  5589. repeated DescriptorProto message_type = 4;
  5590. and DescriptorProto.field has field number 2:
  5591. repeated FieldDescriptorProto field = 2;
  5592. and FieldDescriptorProto.name has field number 1:
  5593. optional string name = 1;
  5594. Thus, the above path gives the location of a field name. If we removed
  5595. the last element:
  5596. [ 4, 3, 2, 7 ]
  5597. this path refers to the whole field declaration (from the beginning
  5598. of the label to the terminating semicolon).
  5599. </summary>
  5600. </member>
  5601. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.SpanFieldNumber">
  5602. <summary>Field number for the "span" field.</summary>
  5603. </member>
  5604. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.Span">
  5605. <summary>
  5606. Always has exactly three or four elements: start line, start column,
  5607. end line (optional, otherwise assumed same as start line), end column.
  5608. These are packed into a single field for efficiency. Note that line
  5609. and column numbers are zero-based -- typically you will want to add
  5610. 1 to each before displaying to a user.
  5611. </summary>
  5612. </member>
  5613. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingCommentsFieldNumber">
  5614. <summary>Field number for the "leading_comments" field.</summary>
  5615. </member>
  5616. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingComments">
  5617. <summary>
  5618. If this SourceCodeInfo represents a complete declaration, these are any
  5619. comments appearing before and after the declaration which appear to be
  5620. attached to the declaration.
  5621. A series of line comments appearing on consecutive lines, with no other
  5622. tokens appearing on those lines, will be treated as a single comment.
  5623. leading_detached_comments will keep paragraphs of comments that appear
  5624. before (but not connected to) the current element. Each paragraph,
  5625. separated by empty lines, will be one comment element in the repeated
  5626. field.
  5627. Only the comment content is provided; comment markers (e.g. //) are
  5628. stripped out. For block comments, leading whitespace and an asterisk
  5629. will be stripped from the beginning of each line other than the first.
  5630. Newlines are included in the output.
  5631. Examples:
  5632. optional int32 foo = 1; // Comment attached to foo.
  5633. // Comment attached to bar.
  5634. optional int32 bar = 2;
  5635. optional string baz = 3;
  5636. // Comment attached to baz.
  5637. // Another line attached to baz.
  5638. // Comment attached to qux.
  5639. //
  5640. // Another line attached to qux.
  5641. optional double qux = 4;
  5642. // Detached comment for corge. This is not leading or trailing comments
  5643. // to qux or corge because there are blank lines separating it from
  5644. // both.
  5645. // Detached comment for corge paragraph 2.
  5646. optional string corge = 5;
  5647. /* Block comment attached
  5648. * to corge. Leading asterisks
  5649. * will be removed. */
  5650. /* Block comment attached to
  5651. * grault. */
  5652. optional int32 grault = 6;
  5653. // ignored detached comments.
  5654. </summary>
  5655. </member>
  5656. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.HasLeadingComments">
  5657. <summary>Gets whether the "leading_comments" field is set</summary>
  5658. </member>
  5659. <member name="M:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.ClearLeadingComments">
  5660. <summary>Clears the value of the "leading_comments" field</summary>
  5661. </member>
  5662. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.TrailingCommentsFieldNumber">
  5663. <summary>Field number for the "trailing_comments" field.</summary>
  5664. </member>
  5665. <member name="P:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.HasTrailingComments">
  5666. <summary>Gets whether the "trailing_comments" field is set</summary>
  5667. </member>
  5668. <member name="M:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.ClearTrailingComments">
  5669. <summary>Clears the value of the "trailing_comments" field</summary>
  5670. </member>
  5671. <member name="F:Google.Protobuf.Reflection.SourceCodeInfo.Types.Location.LeadingDetachedCommentsFieldNumber">
  5672. <summary>Field number for the "leading_detached_comments" field.</summary>
  5673. </member>
  5674. <member name="T:Google.Protobuf.Reflection.GeneratedCodeInfo">
  5675. <summary>
  5676. Describes the relationship between generated code and its original source
  5677. file. A GeneratedCodeInfo message is associated with only one generated
  5678. source file, but may contain references to different source .proto files.
  5679. </summary>
  5680. </member>
  5681. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.AnnotationFieldNumber">
  5682. <summary>Field number for the "annotation" field.</summary>
  5683. </member>
  5684. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Annotation">
  5685. <summary>
  5686. An Annotation connects some span of text in generated code to an element
  5687. of its generating .proto file.
  5688. </summary>
  5689. </member>
  5690. <member name="T:Google.Protobuf.Reflection.GeneratedCodeInfo.Types">
  5691. <summary>Container for nested types declared in the GeneratedCodeInfo message type.</summary>
  5692. </member>
  5693. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.PathFieldNumber">
  5694. <summary>Field number for the "path" field.</summary>
  5695. </member>
  5696. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.Path">
  5697. <summary>
  5698. Identifies the element in the original source .proto file. This field
  5699. is formatted the same as SourceCodeInfo.Location.path.
  5700. </summary>
  5701. </member>
  5702. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.SourceFileFieldNumber">
  5703. <summary>Field number for the "source_file" field.</summary>
  5704. </member>
  5705. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.SourceFile">
  5706. <summary>
  5707. Identifies the filesystem path to the original source .proto.
  5708. </summary>
  5709. </member>
  5710. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasSourceFile">
  5711. <summary>Gets whether the "source_file" field is set</summary>
  5712. </member>
  5713. <member name="M:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearSourceFile">
  5714. <summary>Clears the value of the "source_file" field</summary>
  5715. </member>
  5716. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.BeginFieldNumber">
  5717. <summary>Field number for the "begin" field.</summary>
  5718. </member>
  5719. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.Begin">
  5720. <summary>
  5721. Identifies the starting offset in bytes in the generated code
  5722. that relates to the identified object.
  5723. </summary>
  5724. </member>
  5725. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasBegin">
  5726. <summary>Gets whether the "begin" field is set</summary>
  5727. </member>
  5728. <member name="M:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearBegin">
  5729. <summary>Clears the value of the "begin" field</summary>
  5730. </member>
  5731. <member name="F:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.EndFieldNumber">
  5732. <summary>Field number for the "end" field.</summary>
  5733. </member>
  5734. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.End">
  5735. <summary>
  5736. Identifies the ending offset in bytes in the generated code that
  5737. relates to the identified offset. The end offset should be one past
  5738. the last relevant byte (so the length of the text = end - begin).
  5739. </summary>
  5740. </member>
  5741. <member name="P:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.HasEnd">
  5742. <summary>Gets whether the "end" field is set</summary>
  5743. </member>
  5744. <member name="M:Google.Protobuf.Reflection.GeneratedCodeInfo.Types.Annotation.ClearEnd">
  5745. <summary>Clears the value of the "end" field</summary>
  5746. </member>
  5747. <member name="T:Google.Protobuf.Reflection.DescriptorBase">
  5748. <summary>
  5749. Base class for nearly all descriptors, providing common functionality.
  5750. </summary>
  5751. </member>
  5752. <member name="P:Google.Protobuf.Reflection.DescriptorBase.Index">
  5753. <value>
  5754. The index of this descriptor within its parent descriptor.
  5755. </value>
  5756. <remarks>
  5757. This returns the index of this descriptor within its parent, for
  5758. this descriptor's type. (There can be duplicate values for different
  5759. types, e.g. one enum type with index 0 and one message type with index 0.)
  5760. </remarks>
  5761. </member>
  5762. <member name="P:Google.Protobuf.Reflection.DescriptorBase.Name">
  5763. <summary>
  5764. Returns the name of the entity (field, message etc) being described.
  5765. </summary>
  5766. </member>
  5767. <member name="P:Google.Protobuf.Reflection.DescriptorBase.FullName">
  5768. <summary>
  5769. The fully qualified name of the descriptor's target.
  5770. </summary>
  5771. </member>
  5772. <member name="P:Google.Protobuf.Reflection.DescriptorBase.File">
  5773. <value>
  5774. The file this descriptor was declared in.
  5775. </value>
  5776. </member>
  5777. <member name="P:Google.Protobuf.Reflection.DescriptorBase.Declaration">
  5778. <summary>
  5779. The declaration information about the descriptor, or null if no declaration information
  5780. is available for this descriptor.
  5781. </summary>
  5782. <remarks>
  5783. This information is typically only available for dynamically loaded descriptors,
  5784. for example within a protoc plugin where the full descriptors, including source info,
  5785. are passed to the code by protoc.
  5786. </remarks>
  5787. </member>
  5788. <member name="M:Google.Protobuf.Reflection.DescriptorBase.GetNestedDescriptorListForField(System.Int32)">
  5789. <summary>
  5790. Retrieves the list of nested descriptors corresponding to the given field number, if any.
  5791. If the field is unknown or not a nested descriptor list, return null to terminate the search.
  5792. The default implementation returns null.
  5793. </summary>
  5794. </member>
  5795. <member name="T:Google.Protobuf.Reflection.DescriptorDeclaration">
  5796. <summary>
  5797. Provides additional information about the declaration of a descriptor,
  5798. such as source location and comments.
  5799. </summary>
  5800. </member>
  5801. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.Descriptor">
  5802. <summary>
  5803. The descriptor this declaration relates to.
  5804. </summary>
  5805. </member>
  5806. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.StartLine">
  5807. <summary>
  5808. The start line of the declaration within the source file. This value is 1-based.
  5809. </summary>
  5810. </member>
  5811. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.StartColumn">
  5812. <summary>
  5813. The start column of the declaration within the source file. This value is 1-based.
  5814. </summary>
  5815. </member>
  5816. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.EndLine">
  5817. <summary>
  5818. // The end line of the declaration within the source file. This value is 1-based.
  5819. </summary>
  5820. </member>
  5821. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.EndColumn">
  5822. <summary>
  5823. The end column of the declaration within the source file. This value is 1-based, and
  5824. exclusive. (The final character of the declaration is on the column before this value.)
  5825. </summary>
  5826. </member>
  5827. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.LeadingComments">
  5828. <summary>
  5829. Comments appearing before the declaration. Never null, but may be empty. Multi-line comments
  5830. are represented as a newline-separated string. Leading whitespace and the comment marker ("//")
  5831. are removed from each line.
  5832. </summary>
  5833. </member>
  5834. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.TrailingComments">
  5835. <summary>
  5836. Comments appearing after the declaration. Never null, but may be empty. Multi-line comments
  5837. are represented as a newline-separated string. Leading whitespace and the comment marker ("//")
  5838. are removed from each line.
  5839. </summary>
  5840. </member>
  5841. <member name="P:Google.Protobuf.Reflection.DescriptorDeclaration.LeadingDetachedComments">
  5842. <summary>
  5843. Comments appearing before the declaration, but separated from it by blank
  5844. lines. Each string represents a newline-separated paragraph of comments.
  5845. Leading whitespace and the comment marker ("//") are removed from each line.
  5846. The list is never null, but may be empty. Likewise each element is never null, but may be empty.
  5847. </summary>
  5848. </member>
  5849. <member name="T:Google.Protobuf.Reflection.DescriptorPool">
  5850. <summary>
  5851. Contains lookup tables containing all the descriptors defined in a particular file.
  5852. </summary>
  5853. </member>
  5854. <member name="M:Google.Protobuf.Reflection.DescriptorPool.FindSymbol``1(System.String)">
  5855. <summary>
  5856. Finds a symbol of the given name within the pool.
  5857. </summary>
  5858. <typeparam name="T">The type of symbol to look for</typeparam>
  5859. <param name="fullName">Fully-qualified name to look up</param>
  5860. <returns>The symbol with the given name and type,
  5861. or null if the symbol doesn't exist or has the wrong type</returns>
  5862. </member>
  5863. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddPackage(System.String,Google.Protobuf.Reflection.FileDescriptor)">
  5864. <summary>
  5865. Adds a package to the symbol tables. If a package by the same name
  5866. already exists, that is fine, but if some other kind of symbol
  5867. exists under the same name, an exception is thrown. If the package
  5868. has multiple components, this also adds the parent package(s).
  5869. </summary>
  5870. </member>
  5871. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddSymbol(Google.Protobuf.Reflection.IDescriptor)">
  5872. <summary>
  5873. Adds a symbol to the symbol table.
  5874. </summary>
  5875. <exception cref="T:Google.Protobuf.Reflection.DescriptorValidationException">The symbol already existed
  5876. in the symbol table.</exception>
  5877. </member>
  5878. <member name="M:Google.Protobuf.Reflection.DescriptorPool.ValidateSymbolName(Google.Protobuf.Reflection.IDescriptor)">
  5879. <summary>
  5880. Verifies that the descriptor's name is valid (i.e. it contains
  5881. only letters, digits and underscores, and does not start with a digit).
  5882. </summary>
  5883. <param name="descriptor"></param>
  5884. </member>
  5885. <member name="M:Google.Protobuf.Reflection.DescriptorPool.FindFieldByNumber(Google.Protobuf.Reflection.MessageDescriptor,System.Int32)">
  5886. <summary>
  5887. Returns the field with the given number in the given descriptor,
  5888. or null if it can't be found.
  5889. </summary>
  5890. </member>
  5891. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddFieldByNumber(Google.Protobuf.Reflection.FieldDescriptor)">
  5892. <summary>
  5893. Adds a field to the fieldsByNumber table.
  5894. </summary>
  5895. <exception cref="T:Google.Protobuf.Reflection.DescriptorValidationException">A field with the same
  5896. containing type and number already exists.</exception>
  5897. </member>
  5898. <member name="M:Google.Protobuf.Reflection.DescriptorPool.AddEnumValueByNumber(Google.Protobuf.Reflection.EnumValueDescriptor)">
  5899. <summary>
  5900. Adds an enum value to the enumValuesByNumber table. If an enum value
  5901. with the same type and number already exists, this method does nothing.
  5902. (This is allowed; the first value defined with the number takes precedence.)
  5903. </summary>
  5904. </member>
  5905. <member name="M:Google.Protobuf.Reflection.DescriptorPool.LookupSymbol(System.String,Google.Protobuf.Reflection.IDescriptor)">
  5906. <summary>
  5907. Looks up a descriptor by name, relative to some other descriptor.
  5908. The name may be fully-qualified (with a leading '.'), partially-qualified,
  5909. or unqualified. C++-like name lookup semantics are used to search for the
  5910. matching descriptor.
  5911. </summary>
  5912. <remarks>
  5913. This isn't heavily optimized, but it's only used during cross linking anyway.
  5914. If it starts being used more widely, we should look at performance more carefully.
  5915. </remarks>
  5916. </member>
  5917. <member name="T:Google.Protobuf.Reflection.DescriptorUtil">
  5918. <summary>
  5919. Internal class containing utility methods when working with descriptors.
  5920. </summary>
  5921. </member>
  5922. <member name="T:Google.Protobuf.Reflection.DescriptorUtil.IndexedConverter`2">
  5923. <summary>
  5924. Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert
  5925. arrays.
  5926. </summary>
  5927. </member>
  5928. <member name="M:Google.Protobuf.Reflection.DescriptorUtil.ConvertAndMakeReadOnly``2(System.Collections.Generic.IList{``0},Google.Protobuf.Reflection.DescriptorUtil.IndexedConverter{``0,``1})">
  5929. <summary>
  5930. Converts the given array into a read-only list, applying the specified conversion to
  5931. each input element.
  5932. </summary>
  5933. </member>
  5934. <member name="T:Google.Protobuf.Reflection.DescriptorValidationException">
  5935. <summary>
  5936. Thrown when building descriptors fails because the source DescriptorProtos
  5937. are not valid.
  5938. </summary>
  5939. </member>
  5940. <member name="P:Google.Protobuf.Reflection.DescriptorValidationException.ProblemSymbolName">
  5941. <value>
  5942. The full name of the descriptor where the error occurred.
  5943. </value>
  5944. </member>
  5945. <member name="P:Google.Protobuf.Reflection.DescriptorValidationException.Description">
  5946. <value>
  5947. A human-readable description of the error. (The Message property
  5948. is made up of the descriptor's name and this description.)
  5949. </value>
  5950. </member>
  5951. <member name="T:Google.Protobuf.Reflection.EnumDescriptor">
  5952. <summary>
  5953. Descriptor for an enum type in a .proto file.
  5954. </summary>
  5955. </member>
  5956. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.Name">
  5957. <summary>
  5958. The brief name of the descriptor's target.
  5959. </summary>
  5960. </member>
  5961. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.ClrType">
  5962. <summary>
  5963. The CLR type for this enum. For generated code, this will be a CLR enum type.
  5964. </summary>
  5965. </member>
  5966. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.ContainingType">
  5967. <value>
  5968. If this is a nested type, get the outer descriptor, otherwise null.
  5969. </value>
  5970. </member>
  5971. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.Values">
  5972. <value>
  5973. An unmodifiable list of defined value descriptors for this enum.
  5974. </value>
  5975. </member>
  5976. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.FindValueByNumber(System.Int32)">
  5977. <summary>
  5978. Finds an enum value by number. If multiple enum values have the
  5979. same number, this returns the first defined value with that number.
  5980. If there is no value for the given number, this returns <c>null</c>.
  5981. </summary>
  5982. </member>
  5983. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.FindValueByName(System.String)">
  5984. <summary>
  5985. Finds an enum value by name.
  5986. </summary>
  5987. <param name="name">The unqualified name of the value (e.g. "FOO").</param>
  5988. <returns>The value's descriptor, or null if not found.</returns>
  5989. </member>
  5990. <member name="P:Google.Protobuf.Reflection.EnumDescriptor.CustomOptions">
  5991. <summary>
  5992. The (possibly empty) set of custom options for this enum.
  5993. </summary>
  5994. </member>
  5995. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.GetOptions">
  5996. <summary>
  5997. The <c>EnumOptions</c>, defined in <c>descriptor.proto</c>.
  5998. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  5999. Custom options can be retrieved as extensions of the returned message.
  6000. NOTE: A defensive copy is created each time this property is retrieved.
  6001. </summary>
  6002. </member>
  6003. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.EnumOptions,``0})">
  6004. <summary>
  6005. Gets a single value enum option for this descriptor
  6006. </summary>
  6007. </member>
  6008. <member name="M:Google.Protobuf.Reflection.EnumDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.EnumOptions,``0})">
  6009. <summary>
  6010. Gets a repeated value enum option for this descriptor
  6011. </summary>
  6012. </member>
  6013. <member name="T:Google.Protobuf.Reflection.EnumValueDescriptor">
  6014. <summary>
  6015. Descriptor for a single enum value within an enum in a .proto file.
  6016. </summary>
  6017. </member>
  6018. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.Name">
  6019. <summary>
  6020. Returns the name of the enum value described by this object.
  6021. </summary>
  6022. </member>
  6023. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.Number">
  6024. <summary>
  6025. Returns the number associated with this enum value.
  6026. </summary>
  6027. </member>
  6028. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.EnumDescriptor">
  6029. <summary>
  6030. Returns the enum descriptor that this value is part of.
  6031. </summary>
  6032. </member>
  6033. <member name="P:Google.Protobuf.Reflection.EnumValueDescriptor.CustomOptions">
  6034. <summary>
  6035. The (possibly empty) set of custom options for this enum value.
  6036. </summary>
  6037. </member>
  6038. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptor.GetOptions">
  6039. <summary>
  6040. The <c>EnumValueOptions</c>, defined in <c>descriptor.proto</c>.
  6041. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6042. Custom options can be retrieved as extensions of the returned message.
  6043. NOTE: A defensive copy is created each time this property is retrieved.
  6044. </summary>
  6045. </member>
  6046. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.EnumValueOptions,``0})">
  6047. <summary>
  6048. Gets a single value enum value option for this descriptor
  6049. </summary>
  6050. </member>
  6051. <member name="M:Google.Protobuf.Reflection.EnumValueDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.EnumValueOptions,``0})">
  6052. <summary>
  6053. Gets a repeated value enum value option for this descriptor
  6054. </summary>
  6055. </member>
  6056. <member name="T:Google.Protobuf.Reflection.ExtensionCollection">
  6057. <summary>
  6058. A collection to simplify retrieving the descriptors of extensions in a descriptor for a message
  6059. </summary>
  6060. </member>
  6061. <member name="P:Google.Protobuf.Reflection.ExtensionCollection.UnorderedExtensions">
  6062. <summary>
  6063. Returns a readonly list of all the extensions defined in this type in
  6064. the order they were defined in the source .proto file
  6065. </summary>
  6066. </member>
  6067. <member name="M:Google.Protobuf.Reflection.ExtensionCollection.GetExtensionsInDeclarationOrder(Google.Protobuf.Reflection.MessageDescriptor)">
  6068. <summary>
  6069. Returns a readonly list of all the extensions define in this type that extend
  6070. the provided descriptor type in the order they were defined in the source .proto file
  6071. </summary>
  6072. </member>
  6073. <member name="M:Google.Protobuf.Reflection.ExtensionCollection.GetExtensionsInNumberOrder(Google.Protobuf.Reflection.MessageDescriptor)">
  6074. <summary>
  6075. Returns a readonly list of all the extensions define in this type that extend
  6076. the provided descriptor type in accending field order
  6077. </summary>
  6078. </member>
  6079. <member name="T:Google.Protobuf.Reflection.FieldAccessorBase">
  6080. <summary>
  6081. Base class for field accessors.
  6082. </summary>
  6083. </member>
  6084. <member name="T:Google.Protobuf.Reflection.FieldDescriptor">
  6085. <summary>
  6086. Descriptor for a field or extension within a message in a .proto file.
  6087. </summary>
  6088. </member>
  6089. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.ContainingType">
  6090. <summary>
  6091. Get the field's containing message type, or <c>null</c> if it is a field defined at the top level of a file as an extension.
  6092. </summary>
  6093. </member>
  6094. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.ContainingOneof">
  6095. <summary>
  6096. Returns the oneof containing this field, or <c>null</c> if it is not part of a oneof.
  6097. </summary>
  6098. </member>
  6099. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.RealContainingOneof">
  6100. <summary>
  6101. Returns the oneof containing this field if it's a "real" oneof, or <c>null</c> if either this
  6102. field is not part of a oneof, or the oneof is synthetic.
  6103. </summary>
  6104. </member>
  6105. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.JsonName">
  6106. <summary>
  6107. The effective JSON name for this field. This is usually the lower-camel-cased form of the field name,
  6108. but can be overridden using the <c>json_name</c> option in the .proto file.
  6109. </summary>
  6110. </member>
  6111. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.PropertyName">
  6112. <summary>
  6113. The name of the property in the <c>ContainingType.ClrType</c> class.
  6114. </summary>
  6115. </member>
  6116. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.HasPresence">
  6117. <summary>
  6118. Indicates whether this field supports presence, either implicitly (e.g. due to it being a message
  6119. type field) or explicitly via Has/Clear members. If this returns true, it is safe to call
  6120. <see cref="M:Google.Protobuf.Reflection.IFieldAccessor.Clear(Google.Protobuf.IMessage)"/> and <see cref="M:Google.Protobuf.Reflection.IFieldAccessor.HasValue(Google.Protobuf.IMessage)"/>
  6121. on this field's accessor with a suitable message.
  6122. </summary>
  6123. </member>
  6124. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.Extension">
  6125. <summary>
  6126. An extension identifier for this field, or <c>null</c> if this field isn't an extension.
  6127. </summary>
  6128. </member>
  6129. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.Name">
  6130. <summary>
  6131. The brief name of the descriptor's target.
  6132. </summary>
  6133. </member>
  6134. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.Accessor">
  6135. <summary>
  6136. Returns the accessor for this field.
  6137. </summary>
  6138. <remarks>
  6139. <para>
  6140. While a <see cref="T:Google.Protobuf.Reflection.FieldDescriptor"/> describes the field, it does not provide
  6141. any way of obtaining or changing the value of the field within a specific message;
  6142. that is the responsibility of the accessor.
  6143. </para>
  6144. <para>
  6145. In descriptors for generated code, the value returned by this property will be non-null for all
  6146. regular fields. However, if a message containing a map field is introspected, the list of nested messages will include
  6147. an auto-generated nested key/value pair message for the field. This is not represented in any
  6148. generated type, and the value of the map field itself is represented by a dictionary in the
  6149. reflection API. There are never instances of those "hidden" messages, so no accessor is provided
  6150. and this property will return null.
  6151. </para>
  6152. <para>
  6153. In dynamically loaded descriptors, the value returned by this property will current be null;
  6154. if and when dynamic messages are supported, it will return a suitable accessor to work with
  6155. them.
  6156. </para>
  6157. </remarks>
  6158. </member>
  6159. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetFieldTypeFromProtoType(Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type)">
  6160. <summary>
  6161. Maps a field type as included in the .proto file to a FieldType.
  6162. </summary>
  6163. </member>
  6164. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsRepeated">
  6165. <summary>
  6166. Returns <c>true</c> if this field is a repeated field; <c>false</c> otherwise.
  6167. </summary>
  6168. </member>
  6169. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsRequired">
  6170. <summary>
  6171. Returns <c>true</c> if this field is a required field; <c>false</c> otherwise.
  6172. </summary>
  6173. </member>
  6174. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsMap">
  6175. <summary>
  6176. Returns <c>true</c> if this field is a map field; <c>false</c> otherwise.
  6177. </summary>
  6178. </member>
  6179. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsPacked">
  6180. <summary>
  6181. Returns <c>true</c> if this field is a packed, repeated field; <c>false</c> otherwise.
  6182. </summary>
  6183. </member>
  6184. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.IsExtension">
  6185. <summary>
  6186. Returns <c>true</c> if this field extends another message type; <c>false</c> otherwise.
  6187. </summary>
  6188. </member>
  6189. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.FieldType">
  6190. <summary>
  6191. Returns the type of the field.
  6192. </summary>
  6193. </member>
  6194. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.FieldNumber">
  6195. <summary>
  6196. Returns the field number declared in the proto file.
  6197. </summary>
  6198. </member>
  6199. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.CompareTo(Google.Protobuf.Reflection.FieldDescriptor)">
  6200. <summary>
  6201. Compares this descriptor with another one, ordering in "canonical" order
  6202. which simply means ascending order by field number. <paramref name="other"/>
  6203. must be a field of the same type, i.e. the <see cref="P:Google.Protobuf.Reflection.FieldDescriptor.ContainingType"/> of
  6204. both fields must be the same.
  6205. </summary>
  6206. </member>
  6207. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.EnumType">
  6208. <summary>
  6209. For enum fields, returns the field's type.
  6210. </summary>
  6211. </member>
  6212. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.MessageType">
  6213. <summary>
  6214. For embedded message and group fields, returns the field's type.
  6215. </summary>
  6216. </member>
  6217. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.ExtendeeType">
  6218. <summary>
  6219. For extension fields, returns the extended type
  6220. </summary>
  6221. </member>
  6222. <member name="P:Google.Protobuf.Reflection.FieldDescriptor.CustomOptions">
  6223. <summary>
  6224. The (possibly empty) set of custom options for this field.
  6225. </summary>
  6226. </member>
  6227. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetOptions">
  6228. <summary>
  6229. The <c>FieldOptions</c>, defined in <c>descriptor.proto</c>.
  6230. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6231. Custom options can be retrieved as extensions of the returned message.
  6232. NOTE: A defensive copy is created each time this property is retrieved.
  6233. </summary>
  6234. </member>
  6235. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.FieldOptions,``0})">
  6236. <summary>
  6237. Gets a single value field option for this descriptor
  6238. </summary>
  6239. </member>
  6240. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.FieldOptions,``0})">
  6241. <summary>
  6242. Gets a repeated value field option for this descriptor
  6243. </summary>
  6244. </member>
  6245. <member name="M:Google.Protobuf.Reflection.FieldDescriptor.CrossLink">
  6246. <summary>
  6247. Look up and cross-link all field types etc.
  6248. </summary>
  6249. </member>
  6250. <member name="T:Google.Protobuf.Reflection.FieldType">
  6251. <summary>
  6252. Enumeration of all the possible field types.
  6253. </summary>
  6254. </member>
  6255. <member name="F:Google.Protobuf.Reflection.FieldType.Double">
  6256. <summary>
  6257. The <c>double</c> field type.
  6258. </summary>
  6259. </member>
  6260. <member name="F:Google.Protobuf.Reflection.FieldType.Float">
  6261. <summary>
  6262. The <c>float</c> field type.
  6263. </summary>
  6264. </member>
  6265. <member name="F:Google.Protobuf.Reflection.FieldType.Int64">
  6266. <summary>
  6267. The <c>int64</c> field type.
  6268. </summary>
  6269. </member>
  6270. <member name="F:Google.Protobuf.Reflection.FieldType.UInt64">
  6271. <summary>
  6272. The <c>uint64</c> field type.
  6273. </summary>
  6274. </member>
  6275. <member name="F:Google.Protobuf.Reflection.FieldType.Int32">
  6276. <summary>
  6277. The <c>int32</c> field type.
  6278. </summary>
  6279. </member>
  6280. <member name="F:Google.Protobuf.Reflection.FieldType.Fixed64">
  6281. <summary>
  6282. The <c>fixed64</c> field type.
  6283. </summary>
  6284. </member>
  6285. <member name="F:Google.Protobuf.Reflection.FieldType.Fixed32">
  6286. <summary>
  6287. The <c>fixed32</c> field type.
  6288. </summary>
  6289. </member>
  6290. <member name="F:Google.Protobuf.Reflection.FieldType.Bool">
  6291. <summary>
  6292. The <c>bool</c> field type.
  6293. </summary>
  6294. </member>
  6295. <member name="F:Google.Protobuf.Reflection.FieldType.String">
  6296. <summary>
  6297. The <c>string</c> field type.
  6298. </summary>
  6299. </member>
  6300. <member name="F:Google.Protobuf.Reflection.FieldType.Group">
  6301. <summary>
  6302. The field type used for groups.
  6303. </summary>
  6304. </member>
  6305. <member name="F:Google.Protobuf.Reflection.FieldType.Message">
  6306. <summary>
  6307. The field type used for message fields.
  6308. </summary>
  6309. </member>
  6310. <member name="F:Google.Protobuf.Reflection.FieldType.Bytes">
  6311. <summary>
  6312. The <c>bytes</c> field type.
  6313. </summary>
  6314. </member>
  6315. <member name="F:Google.Protobuf.Reflection.FieldType.UInt32">
  6316. <summary>
  6317. The <c>uint32</c> field type.
  6318. </summary>
  6319. </member>
  6320. <member name="F:Google.Protobuf.Reflection.FieldType.SFixed32">
  6321. <summary>
  6322. The <c>sfixed32</c> field type.
  6323. </summary>
  6324. </member>
  6325. <member name="F:Google.Protobuf.Reflection.FieldType.SFixed64">
  6326. <summary>
  6327. The <c>sfixed64</c> field type.
  6328. </summary>
  6329. </member>
  6330. <member name="F:Google.Protobuf.Reflection.FieldType.SInt32">
  6331. <summary>
  6332. The <c>sint32</c> field type.
  6333. </summary>
  6334. </member>
  6335. <member name="F:Google.Protobuf.Reflection.FieldType.SInt64">
  6336. <summary>
  6337. The <c>sint64</c> field type.
  6338. </summary>
  6339. </member>
  6340. <member name="F:Google.Protobuf.Reflection.FieldType.Enum">
  6341. <summary>
  6342. The field type used for enum fields.
  6343. </summary>
  6344. </member>
  6345. <member name="T:Google.Protobuf.Reflection.Syntax">
  6346. <summary>
  6347. The syntax of a .proto file
  6348. </summary>
  6349. </member>
  6350. <member name="F:Google.Protobuf.Reflection.Syntax.Proto2">
  6351. <summary>
  6352. Proto2 syntax
  6353. </summary>
  6354. </member>
  6355. <member name="F:Google.Protobuf.Reflection.Syntax.Proto3">
  6356. <summary>
  6357. Proto3 syntax
  6358. </summary>
  6359. </member>
  6360. <member name="F:Google.Protobuf.Reflection.Syntax.Unknown">
  6361. <summary>
  6362. An unknown declared syntax
  6363. </summary>
  6364. </member>
  6365. <member name="T:Google.Protobuf.Reflection.FileDescriptor">
  6366. <summary>
  6367. Describes a .proto file, including everything defined within.
  6368. IDescriptor is implemented such that the File property returns this descriptor,
  6369. and the FullName is the same as the Name.
  6370. </summary>
  6371. </member>
  6372. <member name="M:Google.Protobuf.Reflection.FileDescriptor.ComputeFullName(Google.Protobuf.Reflection.MessageDescriptor,System.String)">
  6373. <summary>
  6374. Computes the full name of a descriptor within this file, with an optional parent message.
  6375. </summary>
  6376. </member>
  6377. <member name="M:Google.Protobuf.Reflection.FileDescriptor.DeterminePublicDependencies(Google.Protobuf.Reflection.FileDescriptor,Google.Protobuf.Reflection.FileDescriptorProto,System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.FileDescriptor},System.Boolean)">
  6378. <summary>
  6379. Extracts public dependencies from direct dependencies. This is a static method despite its
  6380. first parameter, as the value we're in the middle of constructing is only used for exceptions.
  6381. </summary>
  6382. </member>
  6383. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Proto">
  6384. <value>
  6385. The descriptor in its protocol message representation.
  6386. </value>
  6387. </member>
  6388. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Syntax">
  6389. <summary>
  6390. The syntax of the file
  6391. </summary>
  6392. </member>
  6393. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Name">
  6394. <value>
  6395. The file name.
  6396. </value>
  6397. </member>
  6398. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Package">
  6399. <summary>
  6400. The package as declared in the .proto file. This may or may not
  6401. be equivalent to the .NET namespace of the generated classes.
  6402. </summary>
  6403. </member>
  6404. <member name="P:Google.Protobuf.Reflection.FileDescriptor.MessageTypes">
  6405. <value>
  6406. Unmodifiable list of top-level message types declared in this file.
  6407. </value>
  6408. </member>
  6409. <member name="P:Google.Protobuf.Reflection.FileDescriptor.EnumTypes">
  6410. <value>
  6411. Unmodifiable list of top-level enum types declared in this file.
  6412. </value>
  6413. </member>
  6414. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Services">
  6415. <value>
  6416. Unmodifiable list of top-level services declared in this file.
  6417. </value>
  6418. </member>
  6419. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Extensions">
  6420. <summary>
  6421. Unmodifiable list of top-level extensions declared in this file.
  6422. Note that some extensions may be incomplete (FieldDescriptor.Extension may be null)
  6423. if this descriptor was generated using a version of protoc that did not fully
  6424. support extensions in C#.
  6425. </summary>
  6426. </member>
  6427. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Dependencies">
  6428. <value>
  6429. Unmodifiable list of this file's dependencies (imports).
  6430. </value>
  6431. </member>
  6432. <member name="P:Google.Protobuf.Reflection.FileDescriptor.PublicDependencies">
  6433. <value>
  6434. Unmodifiable list of this file's public dependencies (public imports).
  6435. </value>
  6436. </member>
  6437. <member name="P:Google.Protobuf.Reflection.FileDescriptor.SerializedData">
  6438. <value>
  6439. The original serialized binary form of this descriptor.
  6440. </value>
  6441. </member>
  6442. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Google#Protobuf#Reflection#IDescriptor#FullName">
  6443. <value>
  6444. Implementation of IDescriptor.FullName - just returns the same as Name.
  6445. </value>
  6446. </member>
  6447. <member name="P:Google.Protobuf.Reflection.FileDescriptor.Google#Protobuf#Reflection#IDescriptor#File">
  6448. <value>
  6449. Implementation of IDescriptor.File - just returns this descriptor.
  6450. </value>
  6451. </member>
  6452. <member name="P:Google.Protobuf.Reflection.FileDescriptor.DescriptorPool">
  6453. <value>
  6454. Pool containing symbol descriptors.
  6455. </value>
  6456. </member>
  6457. <member name="M:Google.Protobuf.Reflection.FileDescriptor.FindTypeByName``1(System.String)">
  6458. <summary>
  6459. Finds a type (message, enum, service or extension) in the file by name. Does not find nested types.
  6460. </summary>
  6461. <param name="name">The unqualified type name to look for.</param>
  6462. <typeparam name="T">The type of descriptor to look for</typeparam>
  6463. <returns>The type's descriptor, or null if not found.</returns>
  6464. </member>
  6465. <member name="M:Google.Protobuf.Reflection.FileDescriptor.BuildFrom(Google.Protobuf.ByteString,Google.Protobuf.Reflection.FileDescriptorProto,Google.Protobuf.Reflection.FileDescriptor[],System.Boolean,Google.Protobuf.Reflection.GeneratedClrTypeInfo)">
  6466. <summary>
  6467. Builds a FileDescriptor from its protocol buffer representation.
  6468. </summary>
  6469. <param name="descriptorData">The original serialized descriptor data.
  6470. We have only limited proto2 support, so serializing FileDescriptorProto
  6471. would not necessarily give us this.</param>
  6472. <param name="proto">The protocol message form of the FileDescriptor.</param>
  6473. <param name="dependencies">FileDescriptors corresponding to all of the
  6474. file's dependencies, in the exact order listed in the .proto file. May be null,
  6475. in which case it is treated as an empty array.</param>
  6476. <param name="allowUnknownDependencies">Whether unknown dependencies are ignored (true) or cause an exception to be thrown (false).</param>
  6477. <param name="generatedCodeInfo">Details about generated code, for the purposes of reflection.</param>
  6478. <exception cref="T:Google.Protobuf.Reflection.DescriptorValidationException">If <paramref name="proto"/> is not
  6479. a valid descriptor. This can occur for a number of reasons, such as a field
  6480. having an undefined type or because two messages were defined with the same name.</exception>
  6481. </member>
  6482. <member name="M:Google.Protobuf.Reflection.FileDescriptor.FromGeneratedCode(System.Byte[],Google.Protobuf.Reflection.FileDescriptor[],Google.Protobuf.Reflection.GeneratedClrTypeInfo)">
  6483. <summary>
  6484. Creates a descriptor for generated code.
  6485. </summary>
  6486. <remarks>
  6487. This method is only designed to be used by the results of generating code with protoc,
  6488. which creates the appropriate dependencies etc. It has to be public because the generated
  6489. code is "external", but should not be called directly by end users.
  6490. </remarks>
  6491. </member>
  6492. <member name="M:Google.Protobuf.Reflection.FileDescriptor.BuildFromByteStrings(System.Collections.Generic.IEnumerable{Google.Protobuf.ByteString},Google.Protobuf.ExtensionRegistry)">
  6493. <summary>
  6494. Converts the given descriptor binary data into FileDescriptor objects.
  6495. Note: reflection using the returned FileDescriptors is not currently supported.
  6496. </summary>
  6497. <param name="descriptorData">The binary file descriptor proto data. Must not be null, and any
  6498. dependencies must come before the descriptor which depends on them. (If A depends on B, and B
  6499. depends on C, then the descriptors must be presented in the order C, B, A.) This is compatible
  6500. with the order in which protoc provides descriptors to plugins.</param>
  6501. <param name="registry">The extension registry to use when parsing, or null if no extensions are required.</param>
  6502. <returns>The file descriptors corresponding to <paramref name="descriptorData"/>.</returns>
  6503. </member>
  6504. <member name="M:Google.Protobuf.Reflection.FileDescriptor.BuildFromByteStrings(System.Collections.Generic.IEnumerable{Google.Protobuf.ByteString})">
  6505. <summary>
  6506. Converts the given descriptor binary data into FileDescriptor objects.
  6507. Note: reflection using the returned FileDescriptors is not currently supported.
  6508. </summary>
  6509. <param name="descriptorData">The binary file descriptor proto data. Must not be null, and any
  6510. dependencies must come before the descriptor which depends on them. (If A depends on B, and B
  6511. depends on C, then the descriptors must be presented in the order C, B, A.) This is compatible
  6512. with the order in which protoc provides descriptors to plugins.</param>
  6513. <returns>The file descriptors corresponding to <paramref name="descriptorData"/>.</returns>
  6514. </member>
  6515. <member name="M:Google.Protobuf.Reflection.FileDescriptor.ToString">
  6516. <summary>
  6517. Returns a <see cref="T:System.String" /> that represents this instance.
  6518. </summary>
  6519. <returns>
  6520. A <see cref="T:System.String" /> that represents this instance.
  6521. </returns>
  6522. </member>
  6523. <member name="P:Google.Protobuf.Reflection.FileDescriptor.DescriptorProtoFileDescriptor">
  6524. <summary>
  6525. Returns the file descriptor for descriptor.proto.
  6526. </summary>
  6527. <remarks>
  6528. This is used for protos which take a direct dependency on <c>descriptor.proto</c>, typically for
  6529. annotations. While <c>descriptor.proto</c> is a proto2 file, it is built into the Google.Protobuf
  6530. runtime for reflection purposes. The messages are internal to the runtime as they would require
  6531. proto2 semantics for full support, but the file descriptor is available via this property. The
  6532. C# codegen in protoc automatically uses this property when it detects a dependency on <c>descriptor.proto</c>.
  6533. </remarks>
  6534. <value>
  6535. The file descriptor for <c>descriptor.proto</c>.
  6536. </value>
  6537. </member>
  6538. <member name="P:Google.Protobuf.Reflection.FileDescriptor.CustomOptions">
  6539. <summary>
  6540. The (possibly empty) set of custom options for this file.
  6541. </summary>
  6542. </member>
  6543. <member name="M:Google.Protobuf.Reflection.FileDescriptor.GetOptions">
  6544. <summary>
  6545. The <c>FileOptions</c>, defined in <c>descriptor.proto</c>.
  6546. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6547. Custom options can be retrieved as extensions of the returned message.
  6548. NOTE: A defensive copy is created each time this property is retrieved.
  6549. </summary>
  6550. </member>
  6551. <member name="M:Google.Protobuf.Reflection.FileDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.FileOptions,``0})">
  6552. <summary>
  6553. Gets a single value file option for this descriptor
  6554. </summary>
  6555. </member>
  6556. <member name="M:Google.Protobuf.Reflection.FileDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.FileOptions,``0})">
  6557. <summary>
  6558. Gets a repeated value file option for this descriptor
  6559. </summary>
  6560. </member>
  6561. <member name="M:Google.Protobuf.Reflection.FileDescriptor.ForceReflectionInitialization``1">
  6562. <summary>
  6563. Performs initialization for the given generic type argument.
  6564. </summary>
  6565. <remarks>
  6566. This method is present for the sake of AOT compilers. It allows code (whether handwritten or generated)
  6567. to make calls into the reflection machinery of this library to express an intention to use that type
  6568. reflectively (e.g. for JSON parsing and formatting). The call itself does almost nothing, but AOT compilers
  6569. attempting to determine which generic type arguments need to be handled will spot the code path and act
  6570. accordingly.
  6571. </remarks>
  6572. <typeparam name="T">The type to force initialization for.</typeparam>
  6573. </member>
  6574. <member name="T:Google.Protobuf.Reflection.GeneratedClrTypeInfo">
  6575. <summary>
  6576. Extra information provided by generated code when initializing a message or file descriptor.
  6577. These are constructed as required, and are not long-lived. Hand-written code should
  6578. never need to use this type.
  6579. </summary>
  6580. </member>
  6581. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.ClrType">
  6582. <summary>
  6583. Irrelevant for file descriptors; the CLR type for the message for message descriptors.
  6584. </summary>
  6585. </member>
  6586. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.Parser">
  6587. <summary>
  6588. Irrelevant for file descriptors; the parser for message descriptors.
  6589. </summary>
  6590. </member>
  6591. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.PropertyNames">
  6592. <summary>
  6593. Irrelevant for file descriptors; the CLR property names (in message descriptor field order)
  6594. for fields in the message for message descriptors.
  6595. </summary>
  6596. </member>
  6597. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.Extensions">
  6598. <summary>
  6599. The extensions defined within this file/message descriptor
  6600. </summary>
  6601. </member>
  6602. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.OneofNames">
  6603. <summary>
  6604. Irrelevant for file descriptors; the CLR property "base" names (in message descriptor oneof order)
  6605. for oneofs in the message for message descriptors. It is expected that for a oneof name of "Foo",
  6606. there will be a "FooCase" property and a "ClearFoo" method.
  6607. </summary>
  6608. </member>
  6609. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.NestedTypes">
  6610. <summary>
  6611. The reflection information for types within this file/message descriptor. Elements may be null
  6612. if there is no corresponding generated type, e.g. for map entry types.
  6613. </summary>
  6614. </member>
  6615. <member name="P:Google.Protobuf.Reflection.GeneratedClrTypeInfo.NestedEnums">
  6616. <summary>
  6617. The CLR types for enums within this file/message descriptor.
  6618. </summary>
  6619. </member>
  6620. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type,Google.Protobuf.MessageParser,System.String[],System.String[],System.Type[],Google.Protobuf.Extension[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6621. <summary>
  6622. Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names.
  6623. Each array parameter may be null, to indicate a lack of values.
  6624. The parameter order is designed to make it feasible to format the generated code readably.
  6625. </summary>
  6626. </member>
  6627. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type,Google.Protobuf.MessageParser,System.String[],System.String[],System.Type[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6628. <summary>
  6629. Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names.
  6630. Each array parameter may be null, to indicate a lack of values.
  6631. The parameter order is designed to make it feasible to format the generated code readably.
  6632. </summary>
  6633. </member>
  6634. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type[],Google.Protobuf.Extension[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6635. <summary>
  6636. Creates a GeneratedClrTypeInfo for a file descriptor, with only types, enums, and extensions.
  6637. </summary>
  6638. </member>
  6639. <member name="M:Google.Protobuf.Reflection.GeneratedClrTypeInfo.#ctor(System.Type[],Google.Protobuf.Reflection.GeneratedClrTypeInfo[])">
  6640. <summary>
  6641. Creates a GeneratedClrTypeInfo for a file descriptor, with only types and enums.
  6642. </summary>
  6643. </member>
  6644. <member name="T:Google.Protobuf.Reflection.IDescriptor">
  6645. <summary>
  6646. Interface implemented by all descriptor types.
  6647. </summary>
  6648. </member>
  6649. <member name="P:Google.Protobuf.Reflection.IDescriptor.Name">
  6650. <summary>
  6651. Returns the name of the entity (message, field etc) being described.
  6652. </summary>
  6653. </member>
  6654. <member name="P:Google.Protobuf.Reflection.IDescriptor.FullName">
  6655. <summary>
  6656. Returns the fully-qualified name of the entity being described.
  6657. </summary>
  6658. </member>
  6659. <member name="P:Google.Protobuf.Reflection.IDescriptor.File">
  6660. <summary>
  6661. Returns the descriptor for the .proto file that this entity is part of.
  6662. </summary>
  6663. </member>
  6664. <member name="T:Google.Protobuf.Reflection.IFieldAccessor">
  6665. <summary>
  6666. Allows fields to be reflectively accessed.
  6667. </summary>
  6668. </member>
  6669. <member name="P:Google.Protobuf.Reflection.IFieldAccessor.Descriptor">
  6670. <summary>
  6671. Returns the descriptor associated with this field.
  6672. </summary>
  6673. </member>
  6674. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.Clear(Google.Protobuf.IMessage)">
  6675. <summary>
  6676. Clears the field in the specified message. (For repeated fields,
  6677. this clears the list.)
  6678. </summary>
  6679. </member>
  6680. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.GetValue(Google.Protobuf.IMessage)">
  6681. <summary>
  6682. Fetches the field value. For repeated values, this will be an
  6683. <see cref="T:System.Collections.IList"/> implementation. For map values, this will be an
  6684. <see cref="T:System.Collections.IDictionary"/> implementation.
  6685. </summary>
  6686. </member>
  6687. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.HasValue(Google.Protobuf.IMessage)">
  6688. <summary>
  6689. Indicates whether the field in the specified message is set.
  6690. For proto3 fields that aren't explicitly optional, this throws an <see cref="T:System.InvalidOperationException"/>
  6691. </summary>
  6692. </member>
  6693. <member name="M:Google.Protobuf.Reflection.IFieldAccessor.SetValue(Google.Protobuf.IMessage,System.Object)">
  6694. <summary>
  6695. Mutator for single "simple" fields only.
  6696. </summary>
  6697. <remarks>
  6698. Repeated fields are mutated by fetching the value and manipulating it as a list.
  6699. Map fields are mutated by fetching the value and manipulating it as a dictionary.
  6700. </remarks>
  6701. <exception cref="T:System.InvalidOperationException">The field is not a "simple" field.</exception>
  6702. </member>
  6703. <member name="T:Google.Protobuf.Reflection.MapFieldAccessor">
  6704. <summary>
  6705. Accessor for map fields.
  6706. </summary>
  6707. </member>
  6708. <member name="T:Google.Protobuf.Reflection.MessageDescriptor">
  6709. <summary>
  6710. Describes a message type.
  6711. </summary>
  6712. </member>
  6713. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Name">
  6714. <summary>
  6715. The brief name of the descriptor's target.
  6716. </summary>
  6717. </member>
  6718. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.ClrType">
  6719. <summary>
  6720. The CLR type used to represent message instances from this descriptor.
  6721. </summary>
  6722. <remarks>
  6723. <para>
  6724. The value returned by this property will be non-null for all regular fields. However,
  6725. if a message containing a map field is introspected, the list of nested messages will include
  6726. an auto-generated nested key/value pair message for the field. This is not represented in any
  6727. generated type, so this property will return null in such cases.
  6728. </para>
  6729. <para>
  6730. For wrapper types (<see cref="T:Google.Protobuf.WellKnownTypes.StringValue"/> and the like), the type returned here
  6731. will be the generated message type, not the native type used by reflection for fields of those types. Code
  6732. using reflection should call <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType"/> to determine whether a message descriptor represents
  6733. a wrapper type, and handle the result appropriately.
  6734. </para>
  6735. </remarks>
  6736. </member>
  6737. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Parser">
  6738. <summary>
  6739. A parser for this message type.
  6740. </summary>
  6741. <remarks>
  6742. <para>
  6743. As <see cref="T:Google.Protobuf.Reflection.MessageDescriptor"/> is not generic, this cannot be statically
  6744. typed to the relevant type, but it should produce objects of a type compatible with <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.ClrType"/>.
  6745. </para>
  6746. <para>
  6747. The value returned by this property will be non-null for all regular fields. However,
  6748. if a message containing a map field is introspected, the list of nested messages will include
  6749. an auto-generated nested key/value pair message for the field. No message parser object is created for
  6750. such messages, so this property will return null in such cases.
  6751. </para>
  6752. <para>
  6753. For wrapper types (<see cref="T:Google.Protobuf.WellKnownTypes.StringValue"/> and the like), the parser returned here
  6754. will be the generated message type, not the native type used by reflection for fields of those types. Code
  6755. using reflection should call <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType"/> to determine whether a message descriptor represents
  6756. a wrapper type, and handle the result appropriately.
  6757. </para>
  6758. </remarks>
  6759. </member>
  6760. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.IsWellKnownType">
  6761. <summary>
  6762. Returns whether this message is one of the "well known types" which may have runtime/protoc support.
  6763. </summary>
  6764. </member>
  6765. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.IsWrapperType">
  6766. <summary>
  6767. Returns whether this message is one of the "wrapper types" used for fields which represent primitive values
  6768. with the addition of presence.
  6769. </summary>
  6770. </member>
  6771. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.ContainingType">
  6772. <value>
  6773. If this is a nested type, get the outer descriptor, otherwise null.
  6774. </value>
  6775. </member>
  6776. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Fields">
  6777. <value>
  6778. A collection of fields, which can be retrieved by name or field number.
  6779. </value>
  6780. </member>
  6781. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Extensions">
  6782. <summary>
  6783. An unmodifiable list of extensions defined in this message's scope.
  6784. Note that some extensions may be incomplete (FieldDescriptor.Extension may be null)
  6785. if they are declared in a file generated using a version of protoc that did not fully
  6786. support extensions in C#.
  6787. </summary>
  6788. </member>
  6789. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.NestedTypes">
  6790. <value>
  6791. An unmodifiable list of this message type's nested types.
  6792. </value>
  6793. </member>
  6794. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.EnumTypes">
  6795. <value>
  6796. An unmodifiable list of this message type's enum types.
  6797. </value>
  6798. </member>
  6799. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.Oneofs">
  6800. <value>
  6801. An unmodifiable list of the "oneof" field collections in this message type.
  6802. All "real" oneofs (where <see cref="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> returns false)
  6803. come before synthetic ones.
  6804. </value>
  6805. </member>
  6806. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.RealOneofCount">
  6807. <summary>
  6808. The number of real "oneof" descriptors in this message type. Every element in <see cref="P:Google.Protobuf.Reflection.MessageDescriptor.Oneofs"/>
  6809. with an index less than this will have a <see cref="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> property value
  6810. of <c>false</c>; every element with an index greater than or equal to this will have a
  6811. <see cref="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic"/> property value of <c>true</c>.
  6812. </summary>
  6813. </member>
  6814. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FindFieldByName(System.String)">
  6815. <summary>
  6816. Finds a field by field name.
  6817. </summary>
  6818. <param name="name">The unqualified name of the field (e.g. "foo").</param>
  6819. <returns>The field's descriptor, or null if not found.</returns>
  6820. </member>
  6821. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FindFieldByNumber(System.Int32)">
  6822. <summary>
  6823. Finds a field by field number.
  6824. </summary>
  6825. <param name="number">The field number within this message type.</param>
  6826. <returns>The field's descriptor, or null if not found.</returns>
  6827. </member>
  6828. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FindDescriptor``1(System.String)">
  6829. <summary>
  6830. Finds a nested descriptor by name. The is valid for fields, nested
  6831. message types, oneofs and enums.
  6832. </summary>
  6833. <param name="name">The unqualified name of the descriptor, e.g. "Foo"</param>
  6834. <returns>The descriptor, or null if not found.</returns>
  6835. </member>
  6836. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.CustomOptions">
  6837. <summary>
  6838. The (possibly empty) set of custom options for this message.
  6839. </summary>
  6840. </member>
  6841. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.GetOptions">
  6842. <summary>
  6843. The <c>MessageOptions</c>, defined in <c>descriptor.proto</c>.
  6844. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6845. Custom options can be retrieved as extensions of the returned message.
  6846. NOTE: A defensive copy is created each time this property is retrieved.
  6847. </summary>
  6848. </member>
  6849. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.MessageOptions,``0})">
  6850. <summary>
  6851. Gets a single value message option for this descriptor
  6852. </summary>
  6853. </member>
  6854. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.MessageOptions,``0})">
  6855. <summary>
  6856. Gets a repeated value message option for this descriptor
  6857. </summary>
  6858. </member>
  6859. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.CrossLink">
  6860. <summary>
  6861. Looks up and cross-links all fields and nested types.
  6862. </summary>
  6863. </member>
  6864. <member name="T:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection">
  6865. <summary>
  6866. A collection to simplify retrieving the field accessor for a particular field.
  6867. </summary>
  6868. </member>
  6869. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.InDeclarationOrder">
  6870. <value>
  6871. Returns the fields in the message as an immutable list, in the order in which they
  6872. are declared in the source .proto file.
  6873. </value>
  6874. </member>
  6875. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.InFieldNumberOrder">
  6876. <value>
  6877. Returns the fields in the message as an immutable list, in ascending field number
  6878. order. Field numbers need not be contiguous, so there is no direct mapping from the
  6879. index in the list to the field number; to retrieve a field by field number, it is better
  6880. to use the <see cref="T:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection"/> indexer.
  6881. </value>
  6882. </member>
  6883. <member name="M:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.ByJsonName">
  6884. <value>
  6885. Returns a read-only dictionary mapping the field names in this message as they're available
  6886. in the JSON representation to the field descriptors. For example, a field <c>foo_bar</c>
  6887. in the message would result two entries, one with a key <c>fooBar</c> and one with a key
  6888. <c>foo_bar</c>, both referring to the same field.
  6889. </value>
  6890. </member>
  6891. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.Item(System.Int32)">
  6892. <summary>
  6893. Retrieves the descriptor for the field with the given number.
  6894. </summary>
  6895. <param name="number">Number of the field to retrieve the descriptor for</param>
  6896. <returns>The accessor for the given field</returns>
  6897. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The message descriptor does not contain a field
  6898. with the given number</exception>
  6899. </member>
  6900. <member name="P:Google.Protobuf.Reflection.MessageDescriptor.FieldCollection.Item(System.String)">
  6901. <summary>
  6902. Retrieves the descriptor for the field with the given name.
  6903. </summary>
  6904. <param name="name">Name of the field to retrieve the descriptor for</param>
  6905. <returns>The descriptor for the given field</returns>
  6906. <exception cref="T:System.Collections.Generic.KeyNotFoundException">The message descriptor does not contain a field
  6907. with the given name</exception>
  6908. </member>
  6909. <member name="T:Google.Protobuf.Reflection.MethodDescriptor">
  6910. <summary>
  6911. Describes a single method in a service.
  6912. </summary>
  6913. </member>
  6914. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.Service">
  6915. <value>
  6916. The service this method belongs to.
  6917. </value>
  6918. </member>
  6919. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.InputType">
  6920. <value>
  6921. The method's input type.
  6922. </value>
  6923. </member>
  6924. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.OutputType">
  6925. <value>
  6926. The method's input type.
  6927. </value>
  6928. </member>
  6929. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.IsClientStreaming">
  6930. <value>
  6931. Indicates if client streams multiple requests.
  6932. </value>
  6933. </member>
  6934. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.IsServerStreaming">
  6935. <value>
  6936. Indicates if server streams multiple responses.
  6937. </value>
  6938. </member>
  6939. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.CustomOptions">
  6940. <summary>
  6941. The (possibly empty) set of custom options for this method.
  6942. </summary>
  6943. </member>
  6944. <member name="M:Google.Protobuf.Reflection.MethodDescriptor.GetOptions">
  6945. <summary>
  6946. The <c>MethodOptions</c>, defined in <c>descriptor.proto</c>.
  6947. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  6948. Custom options can be retrieved as extensions of the returned message.
  6949. NOTE: A defensive copy is created each time this property is retrieved.
  6950. </summary>
  6951. </member>
  6952. <member name="M:Google.Protobuf.Reflection.MethodDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.MethodOptions,``0})">
  6953. <summary>
  6954. Gets a single value method option for this descriptor
  6955. </summary>
  6956. </member>
  6957. <member name="M:Google.Protobuf.Reflection.MethodDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.MethodOptions,``0})">
  6958. <summary>
  6959. Gets a repeated value method option for this descriptor
  6960. </summary>
  6961. </member>
  6962. <member name="P:Google.Protobuf.Reflection.MethodDescriptor.Name">
  6963. <summary>
  6964. The brief name of the descriptor's target.
  6965. </summary>
  6966. </member>
  6967. <member name="T:Google.Protobuf.Reflection.OneofAccessor">
  6968. <summary>
  6969. Reflection access for a oneof, allowing clear and "get case" actions.
  6970. </summary>
  6971. </member>
  6972. <member name="P:Google.Protobuf.Reflection.OneofAccessor.Descriptor">
  6973. <summary>
  6974. Gets the descriptor for this oneof.
  6975. </summary>
  6976. <value>
  6977. The descriptor of the oneof.
  6978. </value>
  6979. </member>
  6980. <member name="M:Google.Protobuf.Reflection.OneofAccessor.Clear(Google.Protobuf.IMessage)">
  6981. <summary>
  6982. Clears the oneof in the specified message.
  6983. </summary>
  6984. </member>
  6985. <member name="M:Google.Protobuf.Reflection.OneofAccessor.GetCaseFieldDescriptor(Google.Protobuf.IMessage)">
  6986. <summary>
  6987. Indicates which field in the oneof is set for specified message
  6988. </summary>
  6989. </member>
  6990. <member name="T:Google.Protobuf.Reflection.OneofDescriptor">
  6991. <summary>
  6992. Describes a "oneof" field collection in a message type: a set of
  6993. fields of which at most one can be set in any particular message.
  6994. </summary>
  6995. </member>
  6996. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.Name">
  6997. <summary>
  6998. The brief name of the descriptor's target.
  6999. </summary>
  7000. </member>
  7001. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.ContainingType">
  7002. <summary>
  7003. Gets the message type containing this oneof.
  7004. </summary>
  7005. <value>
  7006. The message type containing this oneof.
  7007. </value>
  7008. </member>
  7009. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.Fields">
  7010. <summary>
  7011. Gets the fields within this oneof, in declaration order.
  7012. </summary>
  7013. <value>
  7014. The fields within this oneof, in declaration order.
  7015. </value>
  7016. </member>
  7017. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.IsSynthetic">
  7018. <summary>
  7019. Returns <c>true</c> if this oneof is a synthetic oneof containing a proto3 optional field;
  7020. <c>false</c> otherwise.
  7021. </summary>
  7022. </member>
  7023. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.Accessor">
  7024. <summary>
  7025. Gets an accessor for reflective access to the values associated with the oneof
  7026. in a particular message.
  7027. </summary>
  7028. <remarks>
  7029. <para>
  7030. In descriptors for generated code, the value returned by this property will always be non-null.
  7031. </para>
  7032. <para>
  7033. In dynamically loaded descriptors, the value returned by this property will current be null;
  7034. if and when dynamic messages are supported, it will return a suitable accessor to work with
  7035. them.
  7036. </para>
  7037. </remarks>
  7038. <value>
  7039. The accessor used for reflective access.
  7040. </value>
  7041. </member>
  7042. <member name="P:Google.Protobuf.Reflection.OneofDescriptor.CustomOptions">
  7043. <summary>
  7044. The (possibly empty) set of custom options for this oneof.
  7045. </summary>
  7046. </member>
  7047. <member name="M:Google.Protobuf.Reflection.OneofDescriptor.GetOptions">
  7048. <summary>
  7049. The <c>OneofOptions</c>, defined in <c>descriptor.proto</c>.
  7050. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  7051. Custom options can be retrieved as extensions of the returned message.
  7052. NOTE: A defensive copy is created each time this property is retrieved.
  7053. </summary>
  7054. </member>
  7055. <member name="M:Google.Protobuf.Reflection.OneofDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.OneofOptions,``0})">
  7056. <summary>
  7057. Gets a single value oneof option for this descriptor
  7058. </summary>
  7059. </member>
  7060. <member name="M:Google.Protobuf.Reflection.OneofDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.OneofOptions,``0})">
  7061. <summary>
  7062. Gets a repeated value oneof option for this descriptor
  7063. </summary>
  7064. </member>
  7065. <member name="T:Google.Protobuf.Reflection.OriginalNameAttribute">
  7066. <summary>
  7067. Specifies the original name (in the .proto file) of a named element,
  7068. such as an enum value.
  7069. </summary>
  7070. </member>
  7071. <member name="P:Google.Protobuf.Reflection.OriginalNameAttribute.Name">
  7072. <summary>
  7073. The name of the element in the .proto file.
  7074. </summary>
  7075. </member>
  7076. <member name="P:Google.Protobuf.Reflection.OriginalNameAttribute.PreferredAlias">
  7077. <summary>
  7078. If the name is preferred in the .proto file.
  7079. </summary>
  7080. </member>
  7081. <member name="M:Google.Protobuf.Reflection.OriginalNameAttribute.#ctor(System.String)">
  7082. <summary>
  7083. Constructs a new attribute instance for the given name.
  7084. </summary>
  7085. <param name="name">The name of the element in the .proto file.</param>
  7086. </member>
  7087. <member name="T:Google.Protobuf.Reflection.PackageDescriptor">
  7088. <summary>
  7089. Represents a package in the symbol table. We use PackageDescriptors
  7090. just as placeholders so that someone cannot define, say, a message type
  7091. that has the same name as an existing package.
  7092. </summary>
  7093. </member>
  7094. <member name="T:Google.Protobuf.Reflection.ReflectionUtil">
  7095. <summary>
  7096. The methods in this class are somewhat evil, and should not be tampered with lightly.
  7097. Basically they allow the creation of relatively weakly typed delegates from MethodInfos
  7098. which are more strongly typed. They do this by creating an appropriate strongly typed
  7099. delegate from the MethodInfo, and then calling that within an anonymous method.
  7100. Mind-bending stuff (at least to your humble narrator) but the resulting delegates are
  7101. very fast compared with calling Invoke later on.
  7102. </summary>
  7103. </member>
  7104. <member name="F:Google.Protobuf.Reflection.ReflectionUtil.EmptyTypes">
  7105. <summary>
  7106. Empty Type[] used when calling GetProperty to force property instead of indexer fetching.
  7107. </summary>
  7108. </member>
  7109. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateFuncIMessageObject(System.Reflection.MethodInfo)">
  7110. <summary>
  7111. Creates a delegate which will cast the argument to the type that declares the method,
  7112. call the method on it, then convert the result to object.
  7113. </summary>
  7114. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7115. implementation.</param>
  7116. </member>
  7117. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateFuncIMessageInt32(System.Reflection.MethodInfo)">
  7118. <summary>
  7119. Creates a delegate which will cast the argument to the type that declares the method,
  7120. call the method on it, then convert the result to the specified type. The method is expected
  7121. to actually return an enum (because of where we're calling it - for oneof cases). Sometimes that
  7122. means we need some extra work to perform conversions.
  7123. </summary>
  7124. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7125. implementation.</param>
  7126. </member>
  7127. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateActionIMessageObject(System.Reflection.MethodInfo)">
  7128. <summary>
  7129. Creates a delegate which will execute the given method after casting the first argument to
  7130. the type that declares the method, and the second argument to the first parameter type of the method.
  7131. </summary>
  7132. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7133. implementation.</param>
  7134. </member>
  7135. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateActionIMessage(System.Reflection.MethodInfo)">
  7136. <summary>
  7137. Creates a delegate which will execute the given method after casting the first argument to
  7138. type that declares the method.
  7139. </summary>
  7140. <param name="method">The method to create a delegate for, which must be declared in an IMessage
  7141. implementation.</param>
  7142. </member>
  7143. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.CreateExtensionHelper(Google.Protobuf.Extension)">
  7144. <summary>
  7145. Creates a delegate which will execute the given method after casting the first argument to
  7146. the type that declares the method, and the second argument to the first parameter type of the method.
  7147. </summary>
  7148. </member>
  7149. <member name="M:Google.Protobuf.Reflection.ReflectionUtil.GetReflectionHelper(System.Type,System.Type)">
  7150. <summary>
  7151. Creates a reflection helper for the given type arguments. Currently these are created on demand
  7152. rather than cached; this will be "busy" when initially loading a message's descriptor, but after that
  7153. they can be garbage collected. We could cache them by type if that proves to be important, but creating
  7154. an object is pretty cheap.
  7155. </summary>
  7156. </member>
  7157. <member name="T:Google.Protobuf.Reflection.RepeatedFieldAccessor">
  7158. <summary>
  7159. Accessor for repeated fields.
  7160. </summary>
  7161. </member>
  7162. <member name="T:Google.Protobuf.Reflection.ServiceDescriptor">
  7163. <summary>
  7164. Describes a service type.
  7165. </summary>
  7166. </member>
  7167. <member name="P:Google.Protobuf.Reflection.ServiceDescriptor.Name">
  7168. <summary>
  7169. The brief name of the descriptor's target.
  7170. </summary>
  7171. </member>
  7172. <member name="P:Google.Protobuf.Reflection.ServiceDescriptor.Methods">
  7173. <value>
  7174. An unmodifiable list of methods in this service.
  7175. </value>
  7176. </member>
  7177. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.FindMethodByName(System.String)">
  7178. <summary>
  7179. Finds a method by name.
  7180. </summary>
  7181. <param name="name">The unqualified name of the method (e.g. "Foo").</param>
  7182. <returns>The method's descriptor, or null if not found.</returns>
  7183. </member>
  7184. <member name="P:Google.Protobuf.Reflection.ServiceDescriptor.CustomOptions">
  7185. <summary>
  7186. The (possibly empty) set of custom options for this service.
  7187. </summary>
  7188. </member>
  7189. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.GetOptions">
  7190. <summary>
  7191. The <c>ServiceOptions</c>, defined in <c>descriptor.proto</c>.
  7192. If the options message is not present (i.e. there are no options), <c>null</c> is returned.
  7193. Custom options can be retrieved as extensions of the returned message.
  7194. NOTE: A defensive copy is created each time this property is retrieved.
  7195. </summary>
  7196. </member>
  7197. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.GetOption``1(Google.Protobuf.Extension{Google.Protobuf.Reflection.ServiceOptions,``0})">
  7198. <summary>
  7199. Gets a single value service option for this descriptor
  7200. </summary>
  7201. </member>
  7202. <member name="M:Google.Protobuf.Reflection.ServiceDescriptor.GetOption``1(Google.Protobuf.RepeatedExtension{Google.Protobuf.Reflection.ServiceOptions,``0})">
  7203. <summary>
  7204. Gets a repeated value service option for this descriptor
  7205. </summary>
  7206. </member>
  7207. <member name="T:Google.Protobuf.Reflection.SingleFieldAccessor">
  7208. <summary>
  7209. Accessor for single fields.
  7210. </summary>
  7211. </member>
  7212. <member name="T:Google.Protobuf.Reflection.TypeRegistry">
  7213. <summary>
  7214. An immutable registry of types which can be looked up by their full name.
  7215. </summary>
  7216. </member>
  7217. <member name="P:Google.Protobuf.Reflection.TypeRegistry.Empty">
  7218. <summary>
  7219. An empty type registry, containing no types.
  7220. </summary>
  7221. </member>
  7222. <member name="M:Google.Protobuf.Reflection.TypeRegistry.Find(System.String)">
  7223. <summary>
  7224. Attempts to find a message descriptor by its full name.
  7225. </summary>
  7226. <param name="fullName">The full name of the message, which is the dot-separated
  7227. combination of package, containing messages and message name</param>
  7228. <returns>The message descriptor corresponding to <paramref name="fullName"/> or null
  7229. if there is no such message descriptor.</returns>
  7230. </member>
  7231. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromFiles(Google.Protobuf.Reflection.FileDescriptor[])">
  7232. <summary>
  7233. Creates a type registry from the specified set of file descriptors.
  7234. </summary>
  7235. <remarks>
  7236. This is a convenience overload for <see cref="M:Google.Protobuf.Reflection.TypeRegistry.FromFiles(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.FileDescriptor})"/>
  7237. to allow calls such as <c>TypeRegistry.FromFiles(descriptor1, descriptor2)</c>.
  7238. </remarks>
  7239. <param name="fileDescriptors">The set of files to include in the registry. Must not contain null values.</param>
  7240. <returns>A type registry for the given files.</returns>
  7241. </member>
  7242. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromFiles(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.FileDescriptor})">
  7243. <summary>
  7244. Creates a type registry from the specified set of file descriptors.
  7245. </summary>
  7246. <remarks>
  7247. All message types within all the specified files are added to the registry, and
  7248. the dependencies of the specified files are also added, recursively.
  7249. </remarks>
  7250. <param name="fileDescriptors">The set of files to include in the registry. Must not contain null values.</param>
  7251. <returns>A type registry for the given files.</returns>
  7252. </member>
  7253. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromMessages(Google.Protobuf.Reflection.MessageDescriptor[])">
  7254. <summary>
  7255. Creates a type registry from the file descriptor parents of the specified set of message descriptors.
  7256. </summary>
  7257. <remarks>
  7258. This is a convenience overload for <see cref="M:Google.Protobuf.Reflection.TypeRegistry.FromMessages(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.MessageDescriptor})"/>
  7259. to allow calls such as <c>TypeRegistry.FromFiles(descriptor1, descriptor2)</c>.
  7260. </remarks>
  7261. <param name="messageDescriptors">The set of message descriptors to use to identify file descriptors to include in the registry.
  7262. Must not contain null values.</param>
  7263. <returns>A type registry for the given files.</returns>
  7264. </member>
  7265. <member name="M:Google.Protobuf.Reflection.TypeRegistry.FromMessages(System.Collections.Generic.IEnumerable{Google.Protobuf.Reflection.MessageDescriptor})">
  7266. <summary>
  7267. Creates a type registry from the file descriptor parents of the specified set of message descriptors.
  7268. </summary>
  7269. <remarks>
  7270. The specified message descriptors are only used to identify their file descriptors; the returned registry
  7271. contains all the types within the file descriptors which contain the specified message descriptors (and
  7272. the dependencies of those files), not just the specified messages.
  7273. </remarks>
  7274. <param name="messageDescriptors">The set of message descriptors to use to identify file descriptors to include in the registry.
  7275. Must not contain null values.</param>
  7276. <returns>A type registry for the given files.</returns>
  7277. </member>
  7278. <member name="T:Google.Protobuf.Reflection.TypeRegistry.Builder">
  7279. <summary>
  7280. Builder class which isn't exposed, but acts as a convenient alternative to passing round two dictionaries in recursive calls.
  7281. </summary>
  7282. </member>
  7283. <member name="T:Google.Protobuf.SegmentedBufferHelper">
  7284. <summary>
  7285. Abstraction for reading from a stream / read only sequence.
  7286. Parsing from the buffer is a loop of reading from current buffer / refreshing the buffer once done.
  7287. </summary>
  7288. </member>
  7289. <member name="M:Google.Protobuf.SegmentedBufferHelper.Initialize(Google.Protobuf.CodedInputStream,Google.Protobuf.SegmentedBufferHelper@)">
  7290. <summary>
  7291. Initialize an instance with a coded input stream.
  7292. This approach is faster than using a constructor because the instance to initialize is passed by reference
  7293. and we can write directly into it without copying.
  7294. </summary>
  7295. </member>
  7296. <member name="M:Google.Protobuf.SegmentedBufferHelper.Initialize(System.Buffers.ReadOnlySequence{System.Byte},Google.Protobuf.SegmentedBufferHelper@,System.ReadOnlySpan{System.Byte}@)">
  7297. <summary>
  7298. Initialize an instance with a read only sequence.
  7299. This approach is faster than using a constructor because the instance to initialize is passed by reference
  7300. and we can write directly into it without copying.
  7301. </summary>
  7302. </member>
  7303. <member name="M:Google.Protobuf.SegmentedBufferHelper.PushLimit(Google.Protobuf.ParserInternalState@,System.Int32)">
  7304. <summary>
  7305. Sets currentLimit to (current position) + byteLimit. This is called
  7306. when descending into a length-delimited embedded message. The previous
  7307. limit is returned.
  7308. </summary>
  7309. <returns>The old limit.</returns>
  7310. </member>
  7311. <member name="M:Google.Protobuf.SegmentedBufferHelper.PopLimit(Google.Protobuf.ParserInternalState@,System.Int32)">
  7312. <summary>
  7313. Discards the current limit, returning the previous limit.
  7314. </summary>
  7315. </member>
  7316. <member name="M:Google.Protobuf.SegmentedBufferHelper.IsReachedLimit(Google.Protobuf.ParserInternalState@)">
  7317. <summary>
  7318. Returns whether or not all the data before the limit has been read.
  7319. </summary>
  7320. <returns></returns>
  7321. </member>
  7322. <member name="M:Google.Protobuf.SegmentedBufferHelper.IsAtEnd(System.ReadOnlySpan{System.Byte}@,Google.Protobuf.ParserInternalState@)">
  7323. <summary>
  7324. Returns true if the stream has reached the end of the input. This is the
  7325. case if either the end of the underlying input source has been reached or
  7326. the stream has reached a limit created using PushLimit.
  7327. </summary>
  7328. </member>
  7329. <member name="T:Google.Protobuf.UnknownField">
  7330. <summary>
  7331. Represents a single field in an UnknownFieldSet.
  7332. An UnknownField consists of four lists of values. The lists correspond
  7333. to the four "wire types" used in the protocol buffer binary format.
  7334. Normally, only one of the four lists will contain any values, since it
  7335. is impossible to define a valid message type that declares two different
  7336. types for the same field number. However, the code is designed to allow
  7337. for the case where the same unknown field number is encountered using
  7338. multiple different wire types.
  7339. </summary>
  7340. </member>
  7341. <member name="M:Google.Protobuf.UnknownField.#ctor">
  7342. <summary>
  7343. Creates a new UnknownField.
  7344. </summary>
  7345. </member>
  7346. <member name="M:Google.Protobuf.UnknownField.Equals(System.Object)">
  7347. <summary>
  7348. Checks if two unknown field are equal.
  7349. </summary>
  7350. </member>
  7351. <member name="M:Google.Protobuf.UnknownField.GetHashCode">
  7352. <summary>
  7353. Get the hash code of the unknown field.
  7354. </summary>
  7355. </member>
  7356. <member name="M:Google.Protobuf.UnknownField.WriteTo(System.Int32,Google.Protobuf.WriteContext@)">
  7357. <summary>
  7358. Serializes the field, including the field number, and writes it to
  7359. <paramref name="output"/>
  7360. </summary>
  7361. <param name="fieldNumber">The unknown field number.</param>
  7362. <param name="output">The write context to write to.</param>
  7363. </member>
  7364. <member name="M:Google.Protobuf.UnknownField.GetSerializedSize(System.Int32)">
  7365. <summary>
  7366. Computes the number of bytes required to encode this field, including field
  7367. number.
  7368. </summary>
  7369. </member>
  7370. <member name="M:Google.Protobuf.UnknownField.MergeFrom(Google.Protobuf.UnknownField)">
  7371. <summary>
  7372. Merge the values in <paramref name="other" /> into this field. For each list
  7373. of values, <paramref name="other"/>'s values are append to the ones in this
  7374. field.
  7375. </summary>
  7376. </member>
  7377. <member name="M:Google.Protobuf.UnknownField.AddAll``1(System.Collections.Generic.List{``0},System.Collections.Generic.IList{``0})">
  7378. <summary>
  7379. Returns a new list containing all of the given specified values from
  7380. both the <paramref name="current"/> and <paramref name="extras"/> lists.
  7381. If <paramref name="current" /> is null and <paramref name="extras"/> is null or empty,
  7382. null is returned. Otherwise, either a new list is created (if <paramref name="current" />
  7383. is null) or the elements of <paramref name="extras"/> are added to <paramref name="current" />.
  7384. </summary>
  7385. </member>
  7386. <member name="M:Google.Protobuf.UnknownField.AddVarint(System.UInt64)">
  7387. <summary>
  7388. Adds a varint value.
  7389. </summary>
  7390. </member>
  7391. <member name="M:Google.Protobuf.UnknownField.AddFixed32(System.UInt32)">
  7392. <summary>
  7393. Adds a fixed32 value.
  7394. </summary>
  7395. </member>
  7396. <member name="M:Google.Protobuf.UnknownField.AddFixed64(System.UInt64)">
  7397. <summary>
  7398. Adds a fixed64 value.
  7399. </summary>
  7400. </member>
  7401. <member name="M:Google.Protobuf.UnknownField.AddLengthDelimited(Google.Protobuf.ByteString)">
  7402. <summary>
  7403. Adds a length-delimited value.
  7404. </summary>
  7405. </member>
  7406. <member name="M:Google.Protobuf.UnknownField.Add``1(System.Collections.Generic.List{``0},``0)">
  7407. <summary>
  7408. Adds <paramref name="value"/> to the <paramref name="list"/>, creating
  7409. a new list if <paramref name="list"/> is null. The list is returned - either
  7410. the original reference or the new list.
  7411. </summary>
  7412. </member>
  7413. <member name="T:Google.Protobuf.UnknownFieldSet">
  7414. <summary>
  7415. Used to keep track of fields which were seen when parsing a protocol message
  7416. but whose field numbers or types are unrecognized. This most frequently
  7417. occurs when new fields are added to a message type and then messages containing
  7418. those fields are read by old software that was built before the new types were
  7419. added.
  7420. Most users will never need to use this class directly.
  7421. </summary>
  7422. </member>
  7423. <member name="M:Google.Protobuf.UnknownFieldSet.#ctor">
  7424. <summary>
  7425. Creates a new UnknownFieldSet.
  7426. </summary>
  7427. </member>
  7428. <member name="M:Google.Protobuf.UnknownFieldSet.HasField(System.Int32)">
  7429. <summary>
  7430. Checks whether or not the given field number is present in the set.
  7431. </summary>
  7432. </member>
  7433. <member name="M:Google.Protobuf.UnknownFieldSet.WriteTo(Google.Protobuf.CodedOutputStream)">
  7434. <summary>
  7435. Serializes the set and writes it to <paramref name="output"/>.
  7436. </summary>
  7437. </member>
  7438. <member name="M:Google.Protobuf.UnknownFieldSet.WriteTo(Google.Protobuf.WriteContext@)">
  7439. <summary>
  7440. Serializes the set and writes it to <paramref name="ctx"/>.
  7441. </summary>
  7442. </member>
  7443. <member name="M:Google.Protobuf.UnknownFieldSet.CalculateSize">
  7444. <summary>
  7445. Gets the number of bytes required to encode this set.
  7446. </summary>
  7447. </member>
  7448. <member name="M:Google.Protobuf.UnknownFieldSet.Equals(System.Object)">
  7449. <summary>
  7450. Checks if two unknown field sets are equal.
  7451. </summary>
  7452. </member>
  7453. <member name="M:Google.Protobuf.UnknownFieldSet.GetHashCode">
  7454. <summary>
  7455. Gets the unknown field set's hash code.
  7456. </summary>
  7457. </member>
  7458. <member name="M:Google.Protobuf.UnknownFieldSet.AddOrReplaceField(System.Int32,Google.Protobuf.UnknownField)">
  7459. <summary>
  7460. Adds a field to the set. If a field with the same number already exists, it
  7461. is replaced.
  7462. </summary>
  7463. </member>
  7464. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFieldFrom(Google.Protobuf.ParseContext@)">
  7465. <summary>
  7466. Parse a single field from <paramref name="ctx"/> and merge it
  7467. into this set.
  7468. </summary>
  7469. <param name="ctx">The parse context from which to read the field</param>
  7470. <returns>false if the tag is an "end group" tag, true otherwise</returns>
  7471. </member>
  7472. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFieldFrom(Google.Protobuf.UnknownFieldSet,Google.Protobuf.CodedInputStream)">
  7473. <summary>
  7474. Create a new UnknownFieldSet if unknownFields is null.
  7475. Parse a single field from <paramref name="input"/> and merge it
  7476. into unknownFields. If <paramref name="input"/> is configured to discard unknown fields,
  7477. <paramref name="unknownFields"/> will be returned as-is and the field will be skipped.
  7478. </summary>
  7479. <param name="unknownFields">The UnknownFieldSet which need to be merged</param>
  7480. <param name="input">The coded input stream containing the field</param>
  7481. <returns>The merged UnknownFieldSet</returns>
  7482. </member>
  7483. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFieldFrom(Google.Protobuf.UnknownFieldSet,Google.Protobuf.ParseContext@)">
  7484. <summary>
  7485. Create a new UnknownFieldSet if unknownFields is null.
  7486. Parse a single field from <paramref name="ctx"/> and merge it
  7487. into unknownFields. If <paramref name="ctx"/> is configured to discard unknown fields,
  7488. <paramref name="unknownFields"/> will be returned as-is and the field will be skipped.
  7489. </summary>
  7490. <param name="unknownFields">The UnknownFieldSet which need to be merged</param>
  7491. <param name="ctx">The parse context from which to read the field</param>
  7492. <returns>The merged UnknownFieldSet</returns>
  7493. </member>
  7494. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFrom(Google.Protobuf.UnknownFieldSet)">
  7495. <summary>
  7496. Merges the fields from <paramref name="other"/> into this set.
  7497. If a field number exists in both sets, the values in <paramref name="other"/>
  7498. will be appended to the values in this set.
  7499. </summary>
  7500. </member>
  7501. <member name="M:Google.Protobuf.UnknownFieldSet.MergeFrom(Google.Protobuf.UnknownFieldSet,Google.Protobuf.UnknownFieldSet)">
  7502. <summary>
  7503. Created a new UnknownFieldSet to <paramref name="unknownFields"/> if
  7504. needed and merges the fields from <paramref name="other"/> into the first set.
  7505. If a field number exists in both sets, the values in <paramref name="other"/>
  7506. will be appended to the values in this set.
  7507. </summary>
  7508. </member>
  7509. <member name="M:Google.Protobuf.UnknownFieldSet.MergeField(System.Int32,Google.Protobuf.UnknownField)">
  7510. <summary>
  7511. Adds a field to the unknown field set. If a field with the same
  7512. number already exists, the two are merged.
  7513. </summary>
  7514. </member>
  7515. <member name="M:Google.Protobuf.UnknownFieldSet.Clone(Google.Protobuf.UnknownFieldSet)">
  7516. <summary>
  7517. Clone an unknown field set from <paramref name="other"/>.
  7518. </summary>
  7519. </member>
  7520. <member name="T:Google.Protobuf.UnsafeByteOperations">
  7521. <summary>
  7522. Provides a number of unsafe byte operations to be used by advanced applications with high performance
  7523. requirements. These methods are referred to as "unsafe" due to the fact that they potentially expose
  7524. the backing buffer of a <see cref="T:Google.Protobuf.ByteString"/> to the application.
  7525. </summary>
  7526. <remarks>
  7527. <para>
  7528. The methods in this class should only be called if it is guaranteed that the buffer backing the
  7529. <see cref="T:Google.Protobuf.ByteString"/> will never change! Mutation of a <see cref="T:Google.Protobuf.ByteString"/> can lead to unexpected
  7530. and undesirable consequences in your application, and will likely be difficult to debug. Proceed with caution!
  7531. </para>
  7532. <para>
  7533. This can have a number of significant side affects that have spooky-action-at-a-distance-like behavior. In
  7534. particular, if the bytes value changes out from under a Protocol Buffer:
  7535. </para>
  7536. <list type="bullet">
  7537. <item>
  7538. <description>serialization may throw</description>
  7539. </item>
  7540. <item>
  7541. <description>serialization may succeed but the wrong bytes may be written out</description>
  7542. </item>
  7543. <item>
  7544. <description>objects that are normally immutable (such as ByteString) are no longer immutable</description>
  7545. </item>
  7546. <item>
  7547. <description>hashCode may be incorrect</description>
  7548. </item>
  7549. </list>
  7550. </remarks>
  7551. </member>
  7552. <member name="M:Google.Protobuf.UnsafeByteOperations.UnsafeWrap(System.ReadOnlyMemory{System.Byte})">
  7553. <summary>
  7554. Constructs a new <see cref="T:Google.Protobuf.ByteString" /> from the given bytes. The bytes are not copied,
  7555. and must not be modified while the <see cref="T:Google.Protobuf.ByteString" /> is in use.
  7556. This API is experimental and subject to change.
  7557. </summary>
  7558. </member>
  7559. <member name="T:Google.Protobuf.WellKnownTypes.AnyReflection">
  7560. <summary>Holder for reflection information generated from google/protobuf/any.proto</summary>
  7561. </member>
  7562. <member name="P:Google.Protobuf.WellKnownTypes.AnyReflection.Descriptor">
  7563. <summary>File descriptor for google/protobuf/any.proto</summary>
  7564. </member>
  7565. <member name="T:Google.Protobuf.WellKnownTypes.Any">
  7566. <summary>
  7567. `Any` contains an arbitrary serialized protocol buffer message along with a
  7568. URL that describes the type of the serialized message.
  7569. Protobuf library provides support to pack/unpack Any values in the form
  7570. of utility functions or additional generated methods of the Any type.
  7571. Example 1: Pack and unpack a message in C++.
  7572. Foo foo = ...;
  7573. Any any;
  7574. any.PackFrom(foo);
  7575. ...
  7576. if (any.UnpackTo(&amp;foo)) {
  7577. ...
  7578. }
  7579. Example 2: Pack and unpack a message in Java.
  7580. Foo foo = ...;
  7581. Any any = Any.pack(foo);
  7582. ...
  7583. if (any.is(Foo.class)) {
  7584. foo = any.unpack(Foo.class);
  7585. }
  7586. Example 3: Pack and unpack a message in Python.
  7587. foo = Foo(...)
  7588. any = Any()
  7589. any.Pack(foo)
  7590. ...
  7591. if any.Is(Foo.DESCRIPTOR):
  7592. any.Unpack(foo)
  7593. ...
  7594. Example 4: Pack and unpack a message in Go
  7595. foo := &amp;pb.Foo{...}
  7596. any, err := anypb.New(foo)
  7597. if err != nil {
  7598. ...
  7599. }
  7600. ...
  7601. foo := &amp;pb.Foo{}
  7602. if err := any.UnmarshalTo(foo); err != nil {
  7603. ...
  7604. }
  7605. The pack methods provided by protobuf library will by default use
  7606. 'type.googleapis.com/full.type.name' as the type URL and the unpack
  7607. methods only use the fully qualified type name after the last '/'
  7608. in the type URL, for example "foo.bar.com/x/y.z" will yield type
  7609. name "y.z".
  7610. JSON
  7611. ====
  7612. The JSON representation of an `Any` value uses the regular
  7613. representation of the deserialized, embedded message, with an
  7614. additional field `@type` which contains the type URL. Example:
  7615. package google.profile;
  7616. message Person {
  7617. string first_name = 1;
  7618. string last_name = 2;
  7619. }
  7620. {
  7621. "@type": "type.googleapis.com/google.profile.Person",
  7622. "firstName": &lt;string>,
  7623. "lastName": &lt;string>
  7624. }
  7625. If the embedded message type is well-known and has a custom JSON
  7626. representation, that representation will be embedded adding a field
  7627. `value` which holds the custom JSON in addition to the `@type`
  7628. field. Example (for message [google.protobuf.Duration][]):
  7629. {
  7630. "@type": "type.googleapis.com/google.protobuf.Duration",
  7631. "value": "1.212s"
  7632. }
  7633. </summary>
  7634. </member>
  7635. <member name="F:Google.Protobuf.WellKnownTypes.Any.TypeUrlFieldNumber">
  7636. <summary>Field number for the "type_url" field.</summary>
  7637. </member>
  7638. <member name="P:Google.Protobuf.WellKnownTypes.Any.TypeUrl">
  7639. <summary>
  7640. A URL/resource name that uniquely identifies the type of the serialized
  7641. protocol buffer message. This string must contain at least
  7642. one "/" character. The last segment of the URL's path must represent
  7643. the fully qualified name of the type (as in
  7644. `path/google.protobuf.Duration`). The name should be in a canonical form
  7645. (e.g., leading "." is not accepted).
  7646. In practice, teams usually precompile into the binary all types that they
  7647. expect it to use in the context of Any. However, for URLs which use the
  7648. scheme `http`, `https`, or no scheme, one can optionally set up a type
  7649. server that maps type URLs to message definitions as follows:
  7650. * If no scheme is provided, `https` is assumed.
  7651. * An HTTP GET on the URL must yield a [google.protobuf.Type][]
  7652. value in binary format, or produce an error.
  7653. * Applications are allowed to cache lookup results based on the
  7654. URL, or have them precompiled into a binary to avoid any
  7655. lookup. Therefore, binary compatibility needs to be preserved
  7656. on changes to types. (Use versioned type names to manage
  7657. breaking changes.)
  7658. Note: this functionality is not currently available in the official
  7659. protobuf release, and it is not used for type URLs beginning with
  7660. type.googleapis.com.
  7661. Schemes other than `http`, `https` (or the empty scheme) might be
  7662. used with implementation specific semantics.
  7663. </summary>
  7664. </member>
  7665. <member name="F:Google.Protobuf.WellKnownTypes.Any.ValueFieldNumber">
  7666. <summary>Field number for the "value" field.</summary>
  7667. </member>
  7668. <member name="P:Google.Protobuf.WellKnownTypes.Any.Value">
  7669. <summary>
  7670. Must be a valid serialized protocol buffer of the above specified type.
  7671. </summary>
  7672. </member>
  7673. <member name="M:Google.Protobuf.WellKnownTypes.Any.GetTypeName(System.String)">
  7674. <summary>
  7675. Retrieves the type name for a type URL, matching the <see cref="P:Google.Protobuf.Reflection.DescriptorBase.FullName"/>
  7676. of the packed message type.
  7677. </summary>
  7678. <remarks>
  7679. <para>
  7680. This is always just the last part of the URL, after the final slash. No validation of
  7681. anything before the trailing slash is performed. If the type URL does not include a slash,
  7682. an empty string is returned rather than an exception being thrown; this won't match any types,
  7683. and the calling code is probably in a better position to give a meaningful error.
  7684. </para>
  7685. <para>
  7686. There is no handling of fragments or queries at the moment.
  7687. </para>
  7688. </remarks>
  7689. <param name="typeUrl">The URL to extract the type name from</param>
  7690. <returns>The type name</returns>
  7691. </member>
  7692. <member name="M:Google.Protobuf.WellKnownTypes.Any.Is(Google.Protobuf.Reflection.MessageDescriptor)">
  7693. <summary>
  7694. Returns a bool indictating whether this Any message is of the target message type
  7695. </summary>
  7696. <param name="descriptor">The descriptor of the message type</param>
  7697. <returns><c>true</c> if the type name matches the descriptor's full name or <c>false</c> otherwise</returns>
  7698. </member>
  7699. <member name="M:Google.Protobuf.WellKnownTypes.Any.Unpack``1">
  7700. <summary>
  7701. Unpacks the content of this Any message into the target message type,
  7702. which must match the type URL within this Any message.
  7703. </summary>
  7704. <typeparam name="T">The type of message to unpack the content into.</typeparam>
  7705. <returns>The unpacked message.</returns>
  7706. <exception cref="T:Google.Protobuf.InvalidProtocolBufferException">The target message type doesn't match the type URL in this message</exception>
  7707. </member>
  7708. <member name="M:Google.Protobuf.WellKnownTypes.Any.TryUnpack``1(``0@)">
  7709. <summary>
  7710. Attempts to unpack the content of this Any message into the target message type,
  7711. if it matches the type URL within this Any message.
  7712. </summary>
  7713. <typeparam name="T">The type of message to attempt to unpack the content into.</typeparam>
  7714. <returns><c>true</c> if the message was successfully unpacked; <c>false</c> if the type name didn't match</returns>
  7715. </member>
  7716. <member name="M:Google.Protobuf.WellKnownTypes.Any.Pack(Google.Protobuf.IMessage)">
  7717. <summary>
  7718. Packs the specified message into an Any message using a type URL prefix of "type.googleapis.com".
  7719. </summary>
  7720. <param name="message">The message to pack.</param>
  7721. <returns>An Any message with the content and type URL of <paramref name="message"/>.</returns>
  7722. </member>
  7723. <member name="M:Google.Protobuf.WellKnownTypes.Any.Pack(Google.Protobuf.IMessage,System.String)">
  7724. <summary>
  7725. Packs the specified message into an Any message using the specified type URL prefix.
  7726. </summary>
  7727. <param name="message">The message to pack.</param>
  7728. <param name="typeUrlPrefix">The prefix for the type URL.</param>
  7729. <returns>An Any message with the content and type URL of <paramref name="message"/>.</returns>
  7730. </member>
  7731. <member name="T:Google.Protobuf.WellKnownTypes.ApiReflection">
  7732. <summary>Holder for reflection information generated from google/protobuf/api.proto</summary>
  7733. </member>
  7734. <member name="P:Google.Protobuf.WellKnownTypes.ApiReflection.Descriptor">
  7735. <summary>File descriptor for google/protobuf/api.proto</summary>
  7736. </member>
  7737. <member name="T:Google.Protobuf.WellKnownTypes.Api">
  7738. <summary>
  7739. Api is a light-weight descriptor for an API Interface.
  7740. Interfaces are also described as "protocol buffer services" in some contexts,
  7741. such as by the "service" keyword in a .proto file, but they are different
  7742. from API Services, which represent a concrete implementation of an interface
  7743. as opposed to simply a description of methods and bindings. They are also
  7744. sometimes simply referred to as "APIs" in other contexts, such as the name of
  7745. this message itself. See https://cloud.google.com/apis/design/glossary for
  7746. detailed terminology.
  7747. </summary>
  7748. </member>
  7749. <member name="F:Google.Protobuf.WellKnownTypes.Api.NameFieldNumber">
  7750. <summary>Field number for the "name" field.</summary>
  7751. </member>
  7752. <member name="P:Google.Protobuf.WellKnownTypes.Api.Name">
  7753. <summary>
  7754. The fully qualified name of this interface, including package name
  7755. followed by the interface's simple name.
  7756. </summary>
  7757. </member>
  7758. <member name="F:Google.Protobuf.WellKnownTypes.Api.MethodsFieldNumber">
  7759. <summary>Field number for the "methods" field.</summary>
  7760. </member>
  7761. <member name="P:Google.Protobuf.WellKnownTypes.Api.Methods">
  7762. <summary>
  7763. The methods of this interface, in unspecified order.
  7764. </summary>
  7765. </member>
  7766. <member name="F:Google.Protobuf.WellKnownTypes.Api.OptionsFieldNumber">
  7767. <summary>Field number for the "options" field.</summary>
  7768. </member>
  7769. <member name="P:Google.Protobuf.WellKnownTypes.Api.Options">
  7770. <summary>
  7771. Any metadata attached to the interface.
  7772. </summary>
  7773. </member>
  7774. <member name="F:Google.Protobuf.WellKnownTypes.Api.VersionFieldNumber">
  7775. <summary>Field number for the "version" field.</summary>
  7776. </member>
  7777. <member name="P:Google.Protobuf.WellKnownTypes.Api.Version">
  7778. <summary>
  7779. A version string for this interface. If specified, must have the form
  7780. `major-version.minor-version`, as in `1.10`. If the minor version is
  7781. omitted, it defaults to zero. If the entire version field is empty, the
  7782. major version is derived from the package name, as outlined below. If the
  7783. field is not empty, the version in the package name will be verified to be
  7784. consistent with what is provided here.
  7785. The versioning schema uses [semantic
  7786. versioning](http://semver.org) where the major version number
  7787. indicates a breaking change and the minor version an additive,
  7788. non-breaking change. Both version numbers are signals to users
  7789. what to expect from different versions, and should be carefully
  7790. chosen based on the product plan.
  7791. The major version is also reflected in the package name of the
  7792. interface, which must end in `v&lt;major-version>`, as in
  7793. `google.feature.v1`. For major versions 0 and 1, the suffix can
  7794. be omitted. Zero major versions must only be used for
  7795. experimental, non-GA interfaces.
  7796. </summary>
  7797. </member>
  7798. <member name="F:Google.Protobuf.WellKnownTypes.Api.SourceContextFieldNumber">
  7799. <summary>Field number for the "source_context" field.</summary>
  7800. </member>
  7801. <member name="P:Google.Protobuf.WellKnownTypes.Api.SourceContext">
  7802. <summary>
  7803. Source context for the protocol buffer service represented by this
  7804. message.
  7805. </summary>
  7806. </member>
  7807. <member name="F:Google.Protobuf.WellKnownTypes.Api.MixinsFieldNumber">
  7808. <summary>Field number for the "mixins" field.</summary>
  7809. </member>
  7810. <member name="P:Google.Protobuf.WellKnownTypes.Api.Mixins">
  7811. <summary>
  7812. Included interfaces. See [Mixin][].
  7813. </summary>
  7814. </member>
  7815. <member name="F:Google.Protobuf.WellKnownTypes.Api.SyntaxFieldNumber">
  7816. <summary>Field number for the "syntax" field.</summary>
  7817. </member>
  7818. <member name="P:Google.Protobuf.WellKnownTypes.Api.Syntax">
  7819. <summary>
  7820. The source syntax of the service.
  7821. </summary>
  7822. </member>
  7823. <member name="T:Google.Protobuf.WellKnownTypes.Method">
  7824. <summary>
  7825. Method represents a method of an API interface.
  7826. </summary>
  7827. </member>
  7828. <member name="F:Google.Protobuf.WellKnownTypes.Method.NameFieldNumber">
  7829. <summary>Field number for the "name" field.</summary>
  7830. </member>
  7831. <member name="P:Google.Protobuf.WellKnownTypes.Method.Name">
  7832. <summary>
  7833. The simple name of this method.
  7834. </summary>
  7835. </member>
  7836. <member name="F:Google.Protobuf.WellKnownTypes.Method.RequestTypeUrlFieldNumber">
  7837. <summary>Field number for the "request_type_url" field.</summary>
  7838. </member>
  7839. <member name="P:Google.Protobuf.WellKnownTypes.Method.RequestTypeUrl">
  7840. <summary>
  7841. A URL of the input message type.
  7842. </summary>
  7843. </member>
  7844. <member name="F:Google.Protobuf.WellKnownTypes.Method.RequestStreamingFieldNumber">
  7845. <summary>Field number for the "request_streaming" field.</summary>
  7846. </member>
  7847. <member name="P:Google.Protobuf.WellKnownTypes.Method.RequestStreaming">
  7848. <summary>
  7849. If true, the request is streamed.
  7850. </summary>
  7851. </member>
  7852. <member name="F:Google.Protobuf.WellKnownTypes.Method.ResponseTypeUrlFieldNumber">
  7853. <summary>Field number for the "response_type_url" field.</summary>
  7854. </member>
  7855. <member name="P:Google.Protobuf.WellKnownTypes.Method.ResponseTypeUrl">
  7856. <summary>
  7857. The URL of the output message type.
  7858. </summary>
  7859. </member>
  7860. <member name="F:Google.Protobuf.WellKnownTypes.Method.ResponseStreamingFieldNumber">
  7861. <summary>Field number for the "response_streaming" field.</summary>
  7862. </member>
  7863. <member name="P:Google.Protobuf.WellKnownTypes.Method.ResponseStreaming">
  7864. <summary>
  7865. If true, the response is streamed.
  7866. </summary>
  7867. </member>
  7868. <member name="F:Google.Protobuf.WellKnownTypes.Method.OptionsFieldNumber">
  7869. <summary>Field number for the "options" field.</summary>
  7870. </member>
  7871. <member name="P:Google.Protobuf.WellKnownTypes.Method.Options">
  7872. <summary>
  7873. Any metadata attached to the method.
  7874. </summary>
  7875. </member>
  7876. <member name="F:Google.Protobuf.WellKnownTypes.Method.SyntaxFieldNumber">
  7877. <summary>Field number for the "syntax" field.</summary>
  7878. </member>
  7879. <member name="P:Google.Protobuf.WellKnownTypes.Method.Syntax">
  7880. <summary>
  7881. The source syntax of this method.
  7882. </summary>
  7883. </member>
  7884. <member name="T:Google.Protobuf.WellKnownTypes.Mixin">
  7885. <summary>
  7886. Declares an API Interface to be included in this interface. The including
  7887. interface must redeclare all the methods from the included interface, but
  7888. documentation and options are inherited as follows:
  7889. - If after comment and whitespace stripping, the documentation
  7890. string of the redeclared method is empty, it will be inherited
  7891. from the original method.
  7892. - Each annotation belonging to the service config (http,
  7893. visibility) which is not set in the redeclared method will be
  7894. inherited.
  7895. - If an http annotation is inherited, the path pattern will be
  7896. modified as follows. Any version prefix will be replaced by the
  7897. version of the including interface plus the [root][] path if
  7898. specified.
  7899. Example of a simple mixin:
  7900. package google.acl.v1;
  7901. service AccessControl {
  7902. // Get the underlying ACL object.
  7903. rpc GetAcl(GetAclRequest) returns (Acl) {
  7904. option (google.api.http).get = "/v1/{resource=**}:getAcl";
  7905. }
  7906. }
  7907. package google.storage.v2;
  7908. service Storage {
  7909. rpc GetAcl(GetAclRequest) returns (Acl);
  7910. // Get a data record.
  7911. rpc GetData(GetDataRequest) returns (Data) {
  7912. option (google.api.http).get = "/v2/{resource=**}";
  7913. }
  7914. }
  7915. Example of a mixin configuration:
  7916. apis:
  7917. - name: google.storage.v2.Storage
  7918. mixins:
  7919. - name: google.acl.v1.AccessControl
  7920. The mixin construct implies that all methods in `AccessControl` are
  7921. also declared with same name and request/response types in
  7922. `Storage`. A documentation generator or annotation processor will
  7923. see the effective `Storage.GetAcl` method after inheriting
  7924. documentation and annotations as follows:
  7925. service Storage {
  7926. // Get the underlying ACL object.
  7927. rpc GetAcl(GetAclRequest) returns (Acl) {
  7928. option (google.api.http).get = "/v2/{resource=**}:getAcl";
  7929. }
  7930. ...
  7931. }
  7932. Note how the version in the path pattern changed from `v1` to `v2`.
  7933. If the `root` field in the mixin is specified, it should be a
  7934. relative path under which inherited HTTP paths are placed. Example:
  7935. apis:
  7936. - name: google.storage.v2.Storage
  7937. mixins:
  7938. - name: google.acl.v1.AccessControl
  7939. root: acls
  7940. This implies the following inherited HTTP annotation:
  7941. service Storage {
  7942. // Get the underlying ACL object.
  7943. rpc GetAcl(GetAclRequest) returns (Acl) {
  7944. option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
  7945. }
  7946. ...
  7947. }
  7948. </summary>
  7949. </member>
  7950. <member name="F:Google.Protobuf.WellKnownTypes.Mixin.NameFieldNumber">
  7951. <summary>Field number for the "name" field.</summary>
  7952. </member>
  7953. <member name="P:Google.Protobuf.WellKnownTypes.Mixin.Name">
  7954. <summary>
  7955. The fully qualified name of the interface which is included.
  7956. </summary>
  7957. </member>
  7958. <member name="F:Google.Protobuf.WellKnownTypes.Mixin.RootFieldNumber">
  7959. <summary>Field number for the "root" field.</summary>
  7960. </member>
  7961. <member name="P:Google.Protobuf.WellKnownTypes.Mixin.Root">
  7962. <summary>
  7963. If non-empty specifies a path under which inherited HTTP paths
  7964. are rooted.
  7965. </summary>
  7966. </member>
  7967. <member name="T:Google.Protobuf.WellKnownTypes.DurationReflection">
  7968. <summary>Holder for reflection information generated from google/protobuf/duration.proto</summary>
  7969. </member>
  7970. <member name="P:Google.Protobuf.WellKnownTypes.DurationReflection.Descriptor">
  7971. <summary>File descriptor for google/protobuf/duration.proto</summary>
  7972. </member>
  7973. <member name="T:Google.Protobuf.WellKnownTypes.Duration">
  7974. <summary>
  7975. A Duration represents a signed, fixed-length span of time represented
  7976. as a count of seconds and fractions of seconds at nanosecond
  7977. resolution. It is independent of any calendar and concepts like "day"
  7978. or "month". It is related to Timestamp in that the difference between
  7979. two Timestamp values is a Duration and it can be added or subtracted
  7980. from a Timestamp. Range is approximately +-10,000 years.
  7981. # Examples
  7982. Example 1: Compute Duration from two Timestamps in pseudo code.
  7983. Timestamp start = ...;
  7984. Timestamp end = ...;
  7985. Duration duration = ...;
  7986. duration.seconds = end.seconds - start.seconds;
  7987. duration.nanos = end.nanos - start.nanos;
  7988. if (duration.seconds &lt; 0 &amp;&amp; duration.nanos > 0) {
  7989. duration.seconds += 1;
  7990. duration.nanos -= 1000000000;
  7991. } else if (duration.seconds > 0 &amp;&amp; duration.nanos &lt; 0) {
  7992. duration.seconds -= 1;
  7993. duration.nanos += 1000000000;
  7994. }
  7995. Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
  7996. Timestamp start = ...;
  7997. Duration duration = ...;
  7998. Timestamp end = ...;
  7999. end.seconds = start.seconds + duration.seconds;
  8000. end.nanos = start.nanos + duration.nanos;
  8001. if (end.nanos &lt; 0) {
  8002. end.seconds -= 1;
  8003. end.nanos += 1000000000;
  8004. } else if (end.nanos >= 1000000000) {
  8005. end.seconds += 1;
  8006. end.nanos -= 1000000000;
  8007. }
  8008. Example 3: Compute Duration from datetime.timedelta in Python.
  8009. td = datetime.timedelta(days=3, minutes=10)
  8010. duration = Duration()
  8011. duration.FromTimedelta(td)
  8012. # JSON Mapping
  8013. In JSON format, the Duration type is encoded as a string rather than an
  8014. object, where the string ends in the suffix "s" (indicating seconds) and
  8015. is preceded by the number of seconds, with nanoseconds expressed as
  8016. fractional seconds. For example, 3 seconds with 0 nanoseconds should be
  8017. encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
  8018. be expressed in JSON format as "3.000000001s", and 3 seconds and 1
  8019. microsecond should be expressed in JSON format as "3.000001s".
  8020. </summary>
  8021. </member>
  8022. <member name="F:Google.Protobuf.WellKnownTypes.Duration.SecondsFieldNumber">
  8023. <summary>Field number for the "seconds" field.</summary>
  8024. </member>
  8025. <member name="P:Google.Protobuf.WellKnownTypes.Duration.Seconds">
  8026. <summary>
  8027. Signed seconds of the span of time. Must be from -315,576,000,000
  8028. to +315,576,000,000 inclusive. Note: these bounds are computed from:
  8029. 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
  8030. </summary>
  8031. </member>
  8032. <member name="F:Google.Protobuf.WellKnownTypes.Duration.NanosFieldNumber">
  8033. <summary>Field number for the "nanos" field.</summary>
  8034. </member>
  8035. <member name="P:Google.Protobuf.WellKnownTypes.Duration.Nanos">
  8036. <summary>
  8037. Signed fractions of a second at nanosecond resolution of the span
  8038. of time. Durations less than one second are represented with a 0
  8039. `seconds` field and a positive or negative `nanos` field. For durations
  8040. of one second or more, a non-zero value for the `nanos` field must be
  8041. of the same sign as the `seconds` field. Must be from -999,999,999
  8042. to +999,999,999 inclusive.
  8043. </summary>
  8044. </member>
  8045. <member name="F:Google.Protobuf.WellKnownTypes.Duration.NanosecondsPerSecond">
  8046. <summary>
  8047. The number of nanoseconds in a second.
  8048. </summary>
  8049. </member>
  8050. <member name="F:Google.Protobuf.WellKnownTypes.Duration.NanosecondsPerTick">
  8051. <summary>
  8052. The number of nanoseconds in a BCL tick (as used by <see cref="T:System.TimeSpan"/> and <see cref="T:System.DateTime"/>).
  8053. </summary>
  8054. </member>
  8055. <member name="F:Google.Protobuf.WellKnownTypes.Duration.MaxSeconds">
  8056. <summary>
  8057. The maximum permitted number of seconds.
  8058. </summary>
  8059. </member>
  8060. <member name="F:Google.Protobuf.WellKnownTypes.Duration.MinSeconds">
  8061. <summary>
  8062. The minimum permitted number of seconds.
  8063. </summary>
  8064. </member>
  8065. <member name="M:Google.Protobuf.WellKnownTypes.Duration.ToTimeSpan">
  8066. <summary>
  8067. Converts this <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> to a <see cref="T:System.TimeSpan"/>.
  8068. </summary>
  8069. <remarks>If the duration is not a precise number of ticks, it is truncated towards 0.</remarks>
  8070. <returns>The value of this duration, as a <c>TimeSpan</c>.</returns>
  8071. <exception cref="T:System.InvalidOperationException">This value isn't a valid normalized duration, as
  8072. described in the documentation.</exception>
  8073. </member>
  8074. <member name="M:Google.Protobuf.WellKnownTypes.Duration.FromTimeSpan(System.TimeSpan)">
  8075. <summary>
  8076. Converts the given <see cref="T:System.TimeSpan"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/>.
  8077. </summary>
  8078. <param name="timeSpan">The <c>TimeSpan</c> to convert.</param>
  8079. <returns>The value of the given <c>TimeSpan</c>, as a <c>Duration</c>.</returns>
  8080. </member>
  8081. <member name="M:Google.Protobuf.WellKnownTypes.Duration.op_UnaryNegation(Google.Protobuf.WellKnownTypes.Duration)">
  8082. <summary>
  8083. Returns the result of negating the duration. For example, the negation of 5 minutes is -5 minutes.
  8084. </summary>
  8085. <param name="value">The duration to negate. Must not be null.</param>
  8086. <returns>The negated value of this duration.</returns>
  8087. </member>
  8088. <member name="M:Google.Protobuf.WellKnownTypes.Duration.op_Addition(Google.Protobuf.WellKnownTypes.Duration,Google.Protobuf.WellKnownTypes.Duration)">
  8089. <summary>
  8090. Adds the two specified <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> values together.
  8091. </summary>
  8092. <param name="lhs">The first value to add. Must not be null.</param>
  8093. <param name="rhs">The second value to add. Must not be null.</param>
  8094. <returns></returns>
  8095. </member>
  8096. <member name="M:Google.Protobuf.WellKnownTypes.Duration.op_Subtraction(Google.Protobuf.WellKnownTypes.Duration,Google.Protobuf.WellKnownTypes.Duration)">
  8097. <summary>
  8098. Subtracts one <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> from another.
  8099. </summary>
  8100. <param name="lhs">The duration to subtract from. Must not be null.</param>
  8101. <param name="rhs">The duration to subtract. Must not be null.</param>
  8102. <returns>The difference between the two specified durations.</returns>
  8103. </member>
  8104. <member name="M:Google.Protobuf.WellKnownTypes.Duration.Normalize(System.Int64,System.Int32)">
  8105. <summary>
  8106. Creates a duration with the normalized values from the given number of seconds and
  8107. nanoseconds, conforming with the description in the proto file.
  8108. </summary>
  8109. </member>
  8110. <member name="M:Google.Protobuf.WellKnownTypes.Duration.ToJson(System.Int64,System.Int32,System.Boolean)">
  8111. <summary>
  8112. Converts a duration specified in seconds/nanoseconds to a string.
  8113. </summary>
  8114. <remarks>
  8115. If the value is a normalized duration in the range described in <c>duration.proto</c>,
  8116. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  8117. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  8118. </remarks>
  8119. <param name="seconds">Seconds portion of the duration.</param>
  8120. <param name="nanoseconds">Nanoseconds portion of the duration.</param>
  8121. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  8122. <exception cref="T:System.InvalidOperationException">The represented duration is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  8123. </member>
  8124. <member name="M:Google.Protobuf.WellKnownTypes.Duration.ToDiagnosticString">
  8125. <summary>
  8126. Returns a string representation of this <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> for diagnostic purposes.
  8127. </summary>
  8128. <remarks>
  8129. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  8130. when the value is non-normalized or out of range, a JSON object representation will be returned
  8131. instead, including a warning. This is to avoid exceptions being thrown when trying to
  8132. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  8133. values.
  8134. </remarks>
  8135. <returns>A string representation of this value.</returns>
  8136. </member>
  8137. <member name="M:Google.Protobuf.WellKnownTypes.Duration.AppendNanoseconds(System.Text.StringBuilder,System.Int32)">
  8138. <summary>
  8139. Appends a number of nanoseconds to a StringBuilder. Either 0 digits are added (in which
  8140. case no "." is appended), or 3 6 or 9 digits. This is internal for use in Timestamp as well
  8141. as Duration.
  8142. </summary>
  8143. </member>
  8144. <member name="T:Google.Protobuf.WellKnownTypes.EmptyReflection">
  8145. <summary>Holder for reflection information generated from google/protobuf/empty.proto</summary>
  8146. </member>
  8147. <member name="P:Google.Protobuf.WellKnownTypes.EmptyReflection.Descriptor">
  8148. <summary>File descriptor for google/protobuf/empty.proto</summary>
  8149. </member>
  8150. <member name="T:Google.Protobuf.WellKnownTypes.Empty">
  8151. <summary>
  8152. A generic empty message that you can re-use to avoid defining duplicated
  8153. empty messages in your APIs. A typical example is to use it as the request
  8154. or the response type of an API method. For instance:
  8155. service Foo {
  8156. rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
  8157. }
  8158. The JSON representation for `Empty` is empty JSON object `{}`.
  8159. </summary>
  8160. </member>
  8161. <member name="T:Google.Protobuf.WellKnownTypes.FieldMaskReflection">
  8162. <summary>Holder for reflection information generated from google/protobuf/field_mask.proto</summary>
  8163. </member>
  8164. <member name="P:Google.Protobuf.WellKnownTypes.FieldMaskReflection.Descriptor">
  8165. <summary>File descriptor for google/protobuf/field_mask.proto</summary>
  8166. </member>
  8167. <member name="T:Google.Protobuf.WellKnownTypes.FieldMask">
  8168. <summary>
  8169. `FieldMask` represents a set of symbolic field paths, for example:
  8170. paths: "f.a"
  8171. paths: "f.b.d"
  8172. Here `f` represents a field in some root message, `a` and `b`
  8173. fields in the message found in `f`, and `d` a field found in the
  8174. message in `f.b`.
  8175. Field masks are used to specify a subset of fields that should be
  8176. returned by a get operation or modified by an update operation.
  8177. Field masks also have a custom JSON encoding (see below).
  8178. # Field Masks in Projections
  8179. When used in the context of a projection, a response message or
  8180. sub-message is filtered by the API to only contain those fields as
  8181. specified in the mask. For example, if the mask in the previous
  8182. example is applied to a response message as follows:
  8183. f {
  8184. a : 22
  8185. b {
  8186. d : 1
  8187. x : 2
  8188. }
  8189. y : 13
  8190. }
  8191. z: 8
  8192. The result will not contain specific values for fields x,y and z
  8193. (their value will be set to the default, and omitted in proto text
  8194. output):
  8195. f {
  8196. a : 22
  8197. b {
  8198. d : 1
  8199. }
  8200. }
  8201. A repeated field is not allowed except at the last position of a
  8202. paths string.
  8203. If a FieldMask object is not present in a get operation, the
  8204. operation applies to all fields (as if a FieldMask of all fields
  8205. had been specified).
  8206. Note that a field mask does not necessarily apply to the
  8207. top-level response message. In case of a REST get operation, the
  8208. field mask applies directly to the response, but in case of a REST
  8209. list operation, the mask instead applies to each individual message
  8210. in the returned resource list. In case of a REST custom method,
  8211. other definitions may be used. Where the mask applies will be
  8212. clearly documented together with its declaration in the API. In
  8213. any case, the effect on the returned resource/resources is required
  8214. behavior for APIs.
  8215. # Field Masks in Update Operations
  8216. A field mask in update operations specifies which fields of the
  8217. targeted resource are going to be updated. The API is required
  8218. to only change the values of the fields as specified in the mask
  8219. and leave the others untouched. If a resource is passed in to
  8220. describe the updated values, the API ignores the values of all
  8221. fields not covered by the mask.
  8222. If a repeated field is specified for an update operation, new values will
  8223. be appended to the existing repeated field in the target resource. Note that
  8224. a repeated field is only allowed in the last position of a `paths` string.
  8225. If a sub-message is specified in the last position of the field mask for an
  8226. update operation, then new value will be merged into the existing sub-message
  8227. in the target resource.
  8228. For example, given the target message:
  8229. f {
  8230. b {
  8231. d: 1
  8232. x: 2
  8233. }
  8234. c: [1]
  8235. }
  8236. And an update message:
  8237. f {
  8238. b {
  8239. d: 10
  8240. }
  8241. c: [2]
  8242. }
  8243. then if the field mask is:
  8244. paths: ["f.b", "f.c"]
  8245. then the result will be:
  8246. f {
  8247. b {
  8248. d: 10
  8249. x: 2
  8250. }
  8251. c: [1, 2]
  8252. }
  8253. An implementation may provide options to override this default behavior for
  8254. repeated and message fields.
  8255. In order to reset a field's value to the default, the field must
  8256. be in the mask and set to the default value in the provided resource.
  8257. Hence, in order to reset all fields of a resource, provide a default
  8258. instance of the resource and set all fields in the mask, or do
  8259. not provide a mask as described below.
  8260. If a field mask is not present on update, the operation applies to
  8261. all fields (as if a field mask of all fields has been specified).
  8262. Note that in the presence of schema evolution, this may mean that
  8263. fields the client does not know and has therefore not filled into
  8264. the request will be reset to their default. If this is unwanted
  8265. behavior, a specific service may require a client to always specify
  8266. a field mask, producing an error if not.
  8267. As with get operations, the location of the resource which
  8268. describes the updated values in the request message depends on the
  8269. operation kind. In any case, the effect of the field mask is
  8270. required to be honored by the API.
  8271. ## Considerations for HTTP REST
  8272. The HTTP kind of an update operation which uses a field mask must
  8273. be set to PATCH instead of PUT in order to satisfy HTTP semantics
  8274. (PUT must only be used for full updates).
  8275. # JSON Encoding of Field Masks
  8276. In JSON, a field mask is encoded as a single string where paths are
  8277. separated by a comma. Fields name in each path are converted
  8278. to/from lower-camel naming conventions.
  8279. As an example, consider the following message declarations:
  8280. message Profile {
  8281. User user = 1;
  8282. Photo photo = 2;
  8283. }
  8284. message User {
  8285. string display_name = 1;
  8286. string address = 2;
  8287. }
  8288. In proto a field mask for `Profile` may look as such:
  8289. mask {
  8290. paths: "user.display_name"
  8291. paths: "photo"
  8292. }
  8293. In JSON, the same mask is represented as below:
  8294. {
  8295. mask: "user.displayName,photo"
  8296. }
  8297. # Field Masks and Oneof Fields
  8298. Field masks treat fields in oneofs just as regular fields. Consider the
  8299. following message:
  8300. message SampleMessage {
  8301. oneof test_oneof {
  8302. string name = 4;
  8303. SubMessage sub_message = 9;
  8304. }
  8305. }
  8306. The field mask can be:
  8307. mask {
  8308. paths: "name"
  8309. }
  8310. Or:
  8311. mask {
  8312. paths: "sub_message"
  8313. }
  8314. Note that oneof type names ("test_oneof" in this case) cannot be used in
  8315. paths.
  8316. ## Field Mask Verification
  8317. The implementation of any API method which has a FieldMask type field in the
  8318. request should verify the included field paths, and return an
  8319. `INVALID_ARGUMENT` error if any path is unmappable.
  8320. </summary>
  8321. </member>
  8322. <member name="F:Google.Protobuf.WellKnownTypes.FieldMask.PathsFieldNumber">
  8323. <summary>Field number for the "paths" field.</summary>
  8324. </member>
  8325. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.Paths">
  8326. <summary>
  8327. The set of field mask paths.
  8328. </summary>
  8329. </member>
  8330. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.ToJson(System.Collections.Generic.IList{System.String},System.Boolean)">
  8331. <summary>
  8332. Converts a field mask specified by paths to a string.
  8333. </summary>
  8334. <remarks>
  8335. If the value is a normalized duration in the range described in <c>field_mask.proto</c>,
  8336. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  8337. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  8338. </remarks>
  8339. <param name="paths">Paths in the field mask</param>
  8340. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  8341. <exception cref="T:System.InvalidOperationException">The represented field mask is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  8342. </member>
  8343. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.ToDiagnosticString">
  8344. <summary>
  8345. Returns a string representation of this <see cref="T:Google.Protobuf.WellKnownTypes.FieldMask"/> for diagnostic purposes.
  8346. </summary>
  8347. <remarks>
  8348. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  8349. when the value is non-normalized or out of range, a JSON object representation will be returned
  8350. instead, including a warning. This is to avoid exceptions being thrown when trying to
  8351. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  8352. values.
  8353. </remarks>
  8354. <returns>A string representation of this value.</returns>
  8355. </member>
  8356. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromString(System.String)">
  8357. <summary>
  8358. Parses from a string to a FieldMask.
  8359. </summary>
  8360. </member>
  8361. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromString``1(System.String)">
  8362. <summary>
  8363. Parses from a string to a FieldMask and validates all field paths.
  8364. </summary>
  8365. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8366. </member>
  8367. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromStringEnumerable``1(System.Collections.Generic.IEnumerable{System.String})">
  8368. <summary>
  8369. Constructs a FieldMask for a list of field paths in a certain type.
  8370. </summary>
  8371. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8372. </member>
  8373. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromFieldNumbers``1(System.Int32[])">
  8374. <summary>
  8375. Constructs a FieldMask from the passed field numbers.
  8376. </summary>
  8377. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8378. </member>
  8379. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.FromFieldNumbers``1(System.Collections.Generic.IEnumerable{System.Int32})">
  8380. <summary>
  8381. Constructs a FieldMask from the passed field numbers.
  8382. </summary>
  8383. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8384. </member>
  8385. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsPathValid(System.String)">
  8386. <summary>
  8387. Checks whether the given path is valid for a field mask.
  8388. </summary>
  8389. <returns>true if the path is valid; false otherwise</returns>
  8390. </member>
  8391. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid``1(Google.Protobuf.WellKnownTypes.FieldMask)">
  8392. <summary>
  8393. Checks whether paths in a given fields mask are valid.
  8394. </summary>
  8395. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8396. </member>
  8397. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid(Google.Protobuf.Reflection.MessageDescriptor,Google.Protobuf.WellKnownTypes.FieldMask)">
  8398. <summary>
  8399. Checks whether paths in a given fields mask are valid.
  8400. </summary>
  8401. </member>
  8402. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid``1(System.String)">
  8403. <summary>
  8404. Checks whether a given field path is valid.
  8405. </summary>
  8406. <typeparam name="T">The type to validate the field paths against.</typeparam>
  8407. </member>
  8408. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.IsValid(Google.Protobuf.Reflection.MessageDescriptor,System.String)">
  8409. <summary>
  8410. Checks whether paths in a given fields mask are valid.
  8411. </summary>
  8412. </member>
  8413. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Normalize">
  8414. <summary>
  8415. Converts this FieldMask to its canonical form. In the canonical form of a
  8416. FieldMask, all field paths are sorted alphabetically and redundant field
  8417. paths are removed.
  8418. </summary>
  8419. </member>
  8420. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Union(Google.Protobuf.WellKnownTypes.FieldMask[])">
  8421. <summary>
  8422. Creates a union of two or more FieldMasks.
  8423. </summary>
  8424. </member>
  8425. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Intersection(Google.Protobuf.WellKnownTypes.FieldMask)">
  8426. <summary>
  8427. Calculates the intersection of two FieldMasks.
  8428. </summary>
  8429. </member>
  8430. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Merge(Google.Protobuf.IMessage,Google.Protobuf.IMessage,Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions)">
  8431. <summary>
  8432. Merges fields specified by this FieldMask from one message to another with the
  8433. specified merge options.
  8434. </summary>
  8435. </member>
  8436. <member name="M:Google.Protobuf.WellKnownTypes.FieldMask.Merge(Google.Protobuf.IMessage,Google.Protobuf.IMessage)">
  8437. <summary>
  8438. Merges fields specified by this FieldMask from one message to another.
  8439. </summary>
  8440. </member>
  8441. <member name="T:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions">
  8442. <summary>
  8443. Options to customize merging behavior.
  8444. </summary>
  8445. </member>
  8446. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplaceMessageFields">
  8447. <summary>
  8448. Whether to replace message fields(i.e., discard existing content in
  8449. destination message fields) when merging.
  8450. Default behavior is to merge the source message field into the
  8451. destination message field.
  8452. </summary>
  8453. </member>
  8454. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplaceRepeatedFields">
  8455. <summary>
  8456. Whether to replace repeated fields (i.e., discard existing content in
  8457. destination repeated fields) when merging.
  8458. Default behavior is to append elements from source repeated field to the
  8459. destination repeated field.
  8460. </summary>
  8461. </member>
  8462. <member name="P:Google.Protobuf.WellKnownTypes.FieldMask.MergeOptions.ReplacePrimitiveFields">
  8463. <summary>
  8464. Whether to replace primitive (non-repeated and non-message) fields in
  8465. destination message fields with the source primitive fields (i.e., if the
  8466. field is set in the source, the value is copied to the
  8467. destination; if the field is unset in the source, the field is cleared
  8468. from the destination) when merging.
  8469. Default behavior is to always set the value of the source primitive
  8470. field to the destination primitive field, and if the source field is
  8471. unset, the default value of the source field is copied to the
  8472. destination.
  8473. </summary>
  8474. </member>
  8475. <member name="T:Google.Protobuf.WellKnownTypes.SourceContextReflection">
  8476. <summary>Holder for reflection information generated from google/protobuf/source_context.proto</summary>
  8477. </member>
  8478. <member name="P:Google.Protobuf.WellKnownTypes.SourceContextReflection.Descriptor">
  8479. <summary>File descriptor for google/protobuf/source_context.proto</summary>
  8480. </member>
  8481. <member name="T:Google.Protobuf.WellKnownTypes.SourceContext">
  8482. <summary>
  8483. `SourceContext` represents information about the source of a
  8484. protobuf element, like the file in which it is defined.
  8485. </summary>
  8486. </member>
  8487. <member name="F:Google.Protobuf.WellKnownTypes.SourceContext.FileNameFieldNumber">
  8488. <summary>Field number for the "file_name" field.</summary>
  8489. </member>
  8490. <member name="P:Google.Protobuf.WellKnownTypes.SourceContext.FileName">
  8491. <summary>
  8492. The path-qualified name of the .proto file that contained the associated
  8493. protobuf element. For example: `"google/protobuf/source_context.proto"`.
  8494. </summary>
  8495. </member>
  8496. <member name="T:Google.Protobuf.WellKnownTypes.StructReflection">
  8497. <summary>Holder for reflection information generated from google/protobuf/struct.proto</summary>
  8498. </member>
  8499. <member name="P:Google.Protobuf.WellKnownTypes.StructReflection.Descriptor">
  8500. <summary>File descriptor for google/protobuf/struct.proto</summary>
  8501. </member>
  8502. <member name="T:Google.Protobuf.WellKnownTypes.NullValue">
  8503. <summary>
  8504. `NullValue` is a singleton enumeration to represent the null value for the
  8505. `Value` type union.
  8506. The JSON representation for `NullValue` is JSON `null`.
  8507. </summary>
  8508. </member>
  8509. <member name="F:Google.Protobuf.WellKnownTypes.NullValue.NullValue">
  8510. <summary>
  8511. Null value.
  8512. </summary>
  8513. </member>
  8514. <member name="T:Google.Protobuf.WellKnownTypes.Struct">
  8515. <summary>
  8516. `Struct` represents a structured data value, consisting of fields
  8517. which map to dynamically typed values. In some languages, `Struct`
  8518. might be supported by a native representation. For example, in
  8519. scripting languages like JS a struct is represented as an
  8520. object. The details of that representation are described together
  8521. with the proto support for the language.
  8522. The JSON representation for `Struct` is JSON object.
  8523. </summary>
  8524. </member>
  8525. <member name="F:Google.Protobuf.WellKnownTypes.Struct.FieldsFieldNumber">
  8526. <summary>Field number for the "fields" field.</summary>
  8527. </member>
  8528. <member name="P:Google.Protobuf.WellKnownTypes.Struct.Fields">
  8529. <summary>
  8530. Unordered map of dynamically typed values.
  8531. </summary>
  8532. </member>
  8533. <member name="T:Google.Protobuf.WellKnownTypes.Value">
  8534. <summary>
  8535. `Value` represents a dynamically typed value which can be either
  8536. null, a number, a string, a boolean, a recursive struct value, or a
  8537. list of values. A producer of value is expected to set one of these
  8538. variants. Absence of any variant indicates an error.
  8539. The JSON representation for `Value` is JSON value.
  8540. </summary>
  8541. </member>
  8542. <member name="F:Google.Protobuf.WellKnownTypes.Value.NullValueFieldNumber">
  8543. <summary>Field number for the "null_value" field.</summary>
  8544. </member>
  8545. <member name="P:Google.Protobuf.WellKnownTypes.Value.NullValue">
  8546. <summary>
  8547. Represents a null value.
  8548. </summary>
  8549. </member>
  8550. <member name="F:Google.Protobuf.WellKnownTypes.Value.NumberValueFieldNumber">
  8551. <summary>Field number for the "number_value" field.</summary>
  8552. </member>
  8553. <member name="P:Google.Protobuf.WellKnownTypes.Value.NumberValue">
  8554. <summary>
  8555. Represents a double value.
  8556. </summary>
  8557. </member>
  8558. <member name="F:Google.Protobuf.WellKnownTypes.Value.StringValueFieldNumber">
  8559. <summary>Field number for the "string_value" field.</summary>
  8560. </member>
  8561. <member name="P:Google.Protobuf.WellKnownTypes.Value.StringValue">
  8562. <summary>
  8563. Represents a string value.
  8564. </summary>
  8565. </member>
  8566. <member name="F:Google.Protobuf.WellKnownTypes.Value.BoolValueFieldNumber">
  8567. <summary>Field number for the "bool_value" field.</summary>
  8568. </member>
  8569. <member name="P:Google.Protobuf.WellKnownTypes.Value.BoolValue">
  8570. <summary>
  8571. Represents a boolean value.
  8572. </summary>
  8573. </member>
  8574. <member name="F:Google.Protobuf.WellKnownTypes.Value.StructValueFieldNumber">
  8575. <summary>Field number for the "struct_value" field.</summary>
  8576. </member>
  8577. <member name="P:Google.Protobuf.WellKnownTypes.Value.StructValue">
  8578. <summary>
  8579. Represents a structured value.
  8580. </summary>
  8581. </member>
  8582. <member name="F:Google.Protobuf.WellKnownTypes.Value.ListValueFieldNumber">
  8583. <summary>Field number for the "list_value" field.</summary>
  8584. </member>
  8585. <member name="P:Google.Protobuf.WellKnownTypes.Value.ListValue">
  8586. <summary>
  8587. Represents a repeated `Value`.
  8588. </summary>
  8589. </member>
  8590. <member name="T:Google.Protobuf.WellKnownTypes.Value.KindOneofCase">
  8591. <summary>Enum of possible cases for the "kind" oneof.</summary>
  8592. </member>
  8593. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForString(System.String)">
  8594. <summary>
  8595. Convenience method to create a Value message with a string value.
  8596. </summary>
  8597. <param name="value">Value to set for the StringValue property.</param>
  8598. <returns>A newly-created Value message with the given value.</returns>
  8599. </member>
  8600. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForNumber(System.Double)">
  8601. <summary>
  8602. Convenience method to create a Value message with a number value.
  8603. </summary>
  8604. <param name="value">Value to set for the NumberValue property.</param>
  8605. <returns>A newly-created Value message with the given value.</returns>
  8606. </member>
  8607. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForBool(System.Boolean)">
  8608. <summary>
  8609. Convenience method to create a Value message with a Boolean value.
  8610. </summary>
  8611. <param name="value">Value to set for the BoolValue property.</param>
  8612. <returns>A newly-created Value message with the given value.</returns>
  8613. </member>
  8614. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForNull">
  8615. <summary>
  8616. Convenience method to create a Value message with a null initial value.
  8617. </summary>
  8618. <returns>A newly-created Value message a null initial value.</returns>
  8619. </member>
  8620. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForList(Google.Protobuf.WellKnownTypes.Value[])">
  8621. <summary>
  8622. Convenience method to create a Value message with an initial list of values.
  8623. </summary>
  8624. <remarks>The values provided are not cloned; the references are copied directly.</remarks>
  8625. <returns>A newly-created Value message an initial list value.</returns>
  8626. </member>
  8627. <member name="M:Google.Protobuf.WellKnownTypes.Value.ForStruct(Google.Protobuf.WellKnownTypes.Struct)">
  8628. <summary>
  8629. Convenience method to create a Value message with an initial struct value
  8630. </summary>
  8631. <remarks>The value provided is not cloned; the reference is copied directly.</remarks>
  8632. <returns>A newly-created Value message an initial struct value.</returns>
  8633. </member>
  8634. <member name="T:Google.Protobuf.WellKnownTypes.ListValue">
  8635. <summary>
  8636. `ListValue` is a wrapper around a repeated field of values.
  8637. The JSON representation for `ListValue` is JSON array.
  8638. </summary>
  8639. </member>
  8640. <member name="F:Google.Protobuf.WellKnownTypes.ListValue.ValuesFieldNumber">
  8641. <summary>Field number for the "values" field.</summary>
  8642. </member>
  8643. <member name="P:Google.Protobuf.WellKnownTypes.ListValue.Values">
  8644. <summary>
  8645. Repeated field of dynamically typed values.
  8646. </summary>
  8647. </member>
  8648. <member name="T:Google.Protobuf.WellKnownTypes.TimeExtensions">
  8649. <summary>
  8650. Extension methods on BCL time-related types, converting to protobuf types.
  8651. </summary>
  8652. </member>
  8653. <member name="M:Google.Protobuf.WellKnownTypes.TimeExtensions.ToTimestamp(System.DateTime)">
  8654. <summary>
  8655. Converts the given <see cref="T:System.DateTime"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>.
  8656. </summary>
  8657. <param name="dateTime">The date and time to convert to a timestamp.</param>
  8658. <exception cref="T:System.ArgumentException">The <paramref name="dateTime"/> value has a <see cref="P:System.DateTime.Kind"/>other than <c>Utc</c>.</exception>
  8659. <returns>The converted timestamp.</returns>
  8660. </member>
  8661. <member name="M:Google.Protobuf.WellKnownTypes.TimeExtensions.ToTimestamp(System.DateTimeOffset)">
  8662. <summary>
  8663. Converts the given <see cref="T:System.DateTimeOffset"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>
  8664. </summary>
  8665. <remarks>The offset is taken into consideration when converting the value (so the same instant in time
  8666. is represented) but is not a separate part of the resulting value. In other words, there is no
  8667. roundtrip operation to retrieve the original <c>DateTimeOffset</c>.</remarks>
  8668. <param name="dateTimeOffset">The date and time (with UTC offset) to convert to a timestamp.</param>
  8669. <returns>The converted timestamp.</returns>
  8670. </member>
  8671. <member name="M:Google.Protobuf.WellKnownTypes.TimeExtensions.ToDuration(System.TimeSpan)">
  8672. <summary>
  8673. Converts the given <see cref="T:System.TimeSpan"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/>.
  8674. </summary>
  8675. <param name="timeSpan">The time span to convert.</param>
  8676. <returns>The converted duration.</returns>
  8677. </member>
  8678. <member name="T:Google.Protobuf.WellKnownTypes.TimestampReflection">
  8679. <summary>Holder for reflection information generated from google/protobuf/timestamp.proto</summary>
  8680. </member>
  8681. <member name="P:Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor">
  8682. <summary>File descriptor for google/protobuf/timestamp.proto</summary>
  8683. </member>
  8684. <member name="T:Google.Protobuf.WellKnownTypes.Timestamp">
  8685. <summary>
  8686. A Timestamp represents a point in time independent of any time zone or local
  8687. calendar, encoded as a count of seconds and fractions of seconds at
  8688. nanosecond resolution. The count is relative to an epoch at UTC midnight on
  8689. January 1, 1970, in the proleptic Gregorian calendar which extends the
  8690. Gregorian calendar backwards to year one.
  8691. All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
  8692. second table is needed for interpretation, using a [24-hour linear
  8693. smear](https://developers.google.com/time/smear).
  8694. The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
  8695. restricting to that range, we ensure that we can convert to and from [RFC
  8696. 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
  8697. # Examples
  8698. Example 1: Compute Timestamp from POSIX `time()`.
  8699. Timestamp timestamp;
  8700. timestamp.set_seconds(time(NULL));
  8701. timestamp.set_nanos(0);
  8702. Example 2: Compute Timestamp from POSIX `gettimeofday()`.
  8703. struct timeval tv;
  8704. gettimeofday(&amp;tv, NULL);
  8705. Timestamp timestamp;
  8706. timestamp.set_seconds(tv.tv_sec);
  8707. timestamp.set_nanos(tv.tv_usec * 1000);
  8708. Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
  8709. FILETIME ft;
  8710. GetSystemTimeAsFileTime(&amp;ft);
  8711. UINT64 ticks = (((UINT64)ft.dwHighDateTime) &lt;&lt; 32) | ft.dwLowDateTime;
  8712. // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
  8713. // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
  8714. Timestamp timestamp;
  8715. timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
  8716. timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
  8717. Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
  8718. long millis = System.currentTimeMillis();
  8719. Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
  8720. .setNanos((int) ((millis % 1000) * 1000000)).build();
  8721. Example 5: Compute Timestamp from Java `Instant.now()`.
  8722. Instant now = Instant.now();
  8723. Timestamp timestamp =
  8724. Timestamp.newBuilder().setSeconds(now.getEpochSecond())
  8725. .setNanos(now.getNano()).build();
  8726. Example 6: Compute Timestamp from current time in Python.
  8727. timestamp = Timestamp()
  8728. timestamp.GetCurrentTime()
  8729. # JSON Mapping
  8730. In JSON format, the Timestamp type is encoded as a string in the
  8731. [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
  8732. format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
  8733. where {year} is always expressed using four digits while {month}, {day},
  8734. {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
  8735. seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
  8736. are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
  8737. is required. A proto3 JSON serializer should always use UTC (as indicated by
  8738. "Z") when printing the Timestamp type and a proto3 JSON parser should be
  8739. able to accept both UTC and other timezones (as indicated by an offset).
  8740. For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
  8741. 01:30 UTC on January 15, 2017.
  8742. In JavaScript, one can convert a Date object to this format using the
  8743. standard
  8744. [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
  8745. method. In Python, a standard `datetime.datetime` object can be converted
  8746. to this format using
  8747. [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
  8748. the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
  8749. the Joda Time's [`ISODateTimeFormat.dateTime()`](
  8750. http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
  8751. ) to obtain a formatter capable of generating timestamps in this format.
  8752. </summary>
  8753. </member>
  8754. <member name="F:Google.Protobuf.WellKnownTypes.Timestamp.SecondsFieldNumber">
  8755. <summary>Field number for the "seconds" field.</summary>
  8756. </member>
  8757. <member name="P:Google.Protobuf.WellKnownTypes.Timestamp.Seconds">
  8758. <summary>
  8759. Represents seconds of UTC time since Unix epoch
  8760. 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
  8761. 9999-12-31T23:59:59Z inclusive.
  8762. </summary>
  8763. </member>
  8764. <member name="F:Google.Protobuf.WellKnownTypes.Timestamp.NanosFieldNumber">
  8765. <summary>Field number for the "nanos" field.</summary>
  8766. </member>
  8767. <member name="P:Google.Protobuf.WellKnownTypes.Timestamp.Nanos">
  8768. <summary>
  8769. Non-negative fractions of a second at nanosecond resolution. Negative
  8770. second values with fractions must still have non-negative nanos values
  8771. that count forward in time. Must be from 0 to 999,999,999
  8772. inclusive.
  8773. </summary>
  8774. </member>
  8775. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Subtraction(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8776. <summary>
  8777. Returns the difference between one <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/> and another, as a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/>.
  8778. </summary>
  8779. <param name="lhs">The timestamp to subtract from. Must not be null.</param>
  8780. <param name="rhs">The timestamp to subtract. Must not be null.</param>
  8781. <returns>The difference between the two specified timestamps.</returns>
  8782. </member>
  8783. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Addition(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Duration)">
  8784. <summary>
  8785. Adds a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>, to obtain another <c>Timestamp</c>.
  8786. </summary>
  8787. <param name="lhs">The timestamp to add the duration to. Must not be null.</param>
  8788. <param name="rhs">The duration to add. Must not be null.</param>
  8789. <returns>The result of adding the duration to the timestamp.</returns>
  8790. </member>
  8791. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Subtraction(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Duration)">
  8792. <summary>
  8793. Subtracts a <see cref="T:Google.Protobuf.WellKnownTypes.Duration"/> from a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>, to obtain another <c>Timestamp</c>.
  8794. </summary>
  8795. <param name="lhs">The timestamp to subtract the duration from. Must not be null.</param>
  8796. <param name="rhs">The duration to subtract.</param>
  8797. <returns>The result of subtracting the duration from the timestamp.</returns>
  8798. </member>
  8799. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToDateTime">
  8800. <summary>
  8801. Converts this timestamp into a <see cref="T:System.DateTime"/>.
  8802. </summary>
  8803. <remarks>
  8804. The resulting <c>DateTime</c> will always have a <c>Kind</c> of <c>Utc</c>.
  8805. If the timestamp is not a precise number of ticks, it will be truncated towards the start
  8806. of time. For example, a timestamp with a <see cref="P:Google.Protobuf.WellKnownTypes.Timestamp.Nanos"/> value of 99 will result in a
  8807. <see cref="T:System.DateTime"/> value precisely on a second.
  8808. </remarks>
  8809. <returns>This timestamp as a <c>DateTime</c>.</returns>
  8810. <exception cref="T:System.InvalidOperationException">The timestamp contains invalid values; either it is
  8811. incorrectly normalized or is outside the valid range.</exception>
  8812. </member>
  8813. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToDateTimeOffset">
  8814. <summary>
  8815. Converts this timestamp into a <see cref="T:System.DateTimeOffset"/>.
  8816. </summary>
  8817. <remarks>
  8818. The resulting <c>DateTimeOffset</c> will always have an <c>Offset</c> of zero.
  8819. If the timestamp is not a precise number of ticks, it will be truncated towards the start
  8820. of time. For example, a timestamp with a <see cref="P:Google.Protobuf.WellKnownTypes.Timestamp.Nanos"/> value of 99 will result in a
  8821. <see cref="T:System.DateTimeOffset"/> value precisely on a second.
  8822. </remarks>
  8823. <returns>This timestamp as a <c>DateTimeOffset</c>.</returns>
  8824. <exception cref="T:System.InvalidOperationException">The timestamp contains invalid values; either it is
  8825. incorrectly normalized or is outside the valid range.</exception>
  8826. </member>
  8827. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.FromDateTime(System.DateTime)">
  8828. <summary>
  8829. Converts the specified <see cref="T:System.DateTime"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>.
  8830. </summary>
  8831. <param name="dateTime"></param>
  8832. <exception cref="T:System.ArgumentException">The <c>Kind</c> of <paramref name="dateTime"/> is not <c>DateTimeKind.Utc</c>.</exception>
  8833. <returns>The converted timestamp.</returns>
  8834. </member>
  8835. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.FromDateTimeOffset(System.DateTimeOffset)">
  8836. <summary>
  8837. Converts the given <see cref="T:System.DateTimeOffset"/> to a <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/>
  8838. </summary>
  8839. <remarks>The offset is taken into consideration when converting the value (so the same instant in time
  8840. is represented) but is not a separate part of the resulting value. In other words, there is no
  8841. roundtrip operation to retrieve the original <c>DateTimeOffset</c>.</remarks>
  8842. <param name="dateTimeOffset">The date and time (with UTC offset) to convert to a timestamp.</param>
  8843. <returns>The converted timestamp.</returns>
  8844. </member>
  8845. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToJson(System.Int64,System.Int32,System.Boolean)">
  8846. <summary>
  8847. Converts a timestamp specified in seconds/nanoseconds to a string.
  8848. </summary>
  8849. <remarks>
  8850. If the value is a normalized duration in the range described in <c>timestamp.proto</c>,
  8851. <paramref name="diagnosticOnly"/> is ignored. Otherwise, if the parameter is <c>true</c>,
  8852. a JSON object with a warning is returned; if it is <c>false</c>, an <see cref="T:System.InvalidOperationException"/> is thrown.
  8853. </remarks>
  8854. <param name="seconds">Seconds portion of the duration.</param>
  8855. <param name="nanoseconds">Nanoseconds portion of the duration.</param>
  8856. <param name="diagnosticOnly">Determines the handling of non-normalized values</param>
  8857. <exception cref="T:System.InvalidOperationException">The represented duration is invalid, and <paramref name="diagnosticOnly"/> is <c>false</c>.</exception>
  8858. </member>
  8859. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.CompareTo(Google.Protobuf.WellKnownTypes.Timestamp)">
  8860. <summary>
  8861. Given another timestamp, returns 0 if the timestamps are equivalent, -1 if this timestamp precedes the other, and 1 otherwise
  8862. </summary>
  8863. <remarks>
  8864. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8865. </remarks>
  8866. <param name="other">Timestamp to compare</param>
  8867. <returns>an integer indicating whether this timestamp precedes or follows the other</returns>
  8868. </member>
  8869. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_LessThan(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8870. <summary>
  8871. Compares two timestamps and returns whether the first is less than (chronologically precedes) the second
  8872. </summary>
  8873. <remarks>
  8874. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8875. </remarks>
  8876. <param name="a"></param>
  8877. <param name="b"></param>
  8878. <returns>true if a precedes b</returns>
  8879. </member>
  8880. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_GreaterThan(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8881. <summary>
  8882. Compares two timestamps and returns whether the first is greater than (chronologically follows) the second
  8883. </summary>
  8884. <remarks>
  8885. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8886. </remarks>
  8887. <param name="a"></param>
  8888. <param name="b"></param>
  8889. <returns>true if a follows b</returns>
  8890. </member>
  8891. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_LessThanOrEqual(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8892. <summary>
  8893. Compares two timestamps and returns whether the first is less than (chronologically precedes) the second
  8894. </summary>
  8895. <remarks>
  8896. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8897. </remarks>
  8898. <param name="a"></param>
  8899. <param name="b"></param>
  8900. <returns>true if a precedes b</returns>
  8901. </member>
  8902. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_GreaterThanOrEqual(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8903. <summary>
  8904. Compares two timestamps and returns whether the first is greater than (chronologically follows) the second
  8905. </summary>
  8906. <remarks>
  8907. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8908. </remarks>
  8909. <param name="a"></param>
  8910. <param name="b"></param>
  8911. <returns>true if a follows b</returns>
  8912. </member>
  8913. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Equality(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8914. <summary>
  8915. Returns whether two timestamps are equivalent
  8916. </summary>
  8917. <remarks>
  8918. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8919. </remarks>
  8920. <param name="a"></param>
  8921. <param name="b"></param>
  8922. <returns>true if the two timestamps refer to the same nanosecond</returns>
  8923. </member>
  8924. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.op_Inequality(Google.Protobuf.WellKnownTypes.Timestamp,Google.Protobuf.WellKnownTypes.Timestamp)">
  8925. <summary>
  8926. Returns whether two timestamps differ
  8927. </summary>
  8928. <remarks>
  8929. Make sure the timestamps are normalized. Comparing non-normalized timestamps is not specified and may give unexpected results.
  8930. </remarks>
  8931. <param name="a"></param>
  8932. <param name="b"></param>
  8933. <returns>true if the two timestamps differ</returns>
  8934. </member>
  8935. <member name="M:Google.Protobuf.WellKnownTypes.Timestamp.ToDiagnosticString">
  8936. <summary>
  8937. Returns a string representation of this <see cref="T:Google.Protobuf.WellKnownTypes.Timestamp"/> for diagnostic purposes.
  8938. </summary>
  8939. <remarks>
  8940. Normally the returned value will be a JSON string value (including leading and trailing quotes) but
  8941. when the value is non-normalized or out of range, a JSON object representation will be returned
  8942. instead, including a warning. This is to avoid exceptions being thrown when trying to
  8943. diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
  8944. values.
  8945. </remarks>
  8946. <returns>A string representation of this value.</returns>
  8947. </member>
  8948. <member name="T:Google.Protobuf.WellKnownTypes.TypeReflection">
  8949. <summary>Holder for reflection information generated from google/protobuf/type.proto</summary>
  8950. </member>
  8951. <member name="P:Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor">
  8952. <summary>File descriptor for google/protobuf/type.proto</summary>
  8953. </member>
  8954. <member name="T:Google.Protobuf.WellKnownTypes.Syntax">
  8955. <summary>
  8956. The syntax in which a protocol buffer element is defined.
  8957. </summary>
  8958. </member>
  8959. <member name="F:Google.Protobuf.WellKnownTypes.Syntax.Proto2">
  8960. <summary>
  8961. Syntax `proto2`.
  8962. </summary>
  8963. </member>
  8964. <member name="F:Google.Protobuf.WellKnownTypes.Syntax.Proto3">
  8965. <summary>
  8966. Syntax `proto3`.
  8967. </summary>
  8968. </member>
  8969. <member name="T:Google.Protobuf.WellKnownTypes.Type">
  8970. <summary>
  8971. A protocol buffer message type.
  8972. </summary>
  8973. </member>
  8974. <member name="F:Google.Protobuf.WellKnownTypes.Type.NameFieldNumber">
  8975. <summary>Field number for the "name" field.</summary>
  8976. </member>
  8977. <member name="P:Google.Protobuf.WellKnownTypes.Type.Name">
  8978. <summary>
  8979. The fully qualified message name.
  8980. </summary>
  8981. </member>
  8982. <member name="F:Google.Protobuf.WellKnownTypes.Type.FieldsFieldNumber">
  8983. <summary>Field number for the "fields" field.</summary>
  8984. </member>
  8985. <member name="P:Google.Protobuf.WellKnownTypes.Type.Fields">
  8986. <summary>
  8987. The list of fields.
  8988. </summary>
  8989. </member>
  8990. <member name="F:Google.Protobuf.WellKnownTypes.Type.OneofsFieldNumber">
  8991. <summary>Field number for the "oneofs" field.</summary>
  8992. </member>
  8993. <member name="P:Google.Protobuf.WellKnownTypes.Type.Oneofs">
  8994. <summary>
  8995. The list of types appearing in `oneof` definitions in this type.
  8996. </summary>
  8997. </member>
  8998. <member name="F:Google.Protobuf.WellKnownTypes.Type.OptionsFieldNumber">
  8999. <summary>Field number for the "options" field.</summary>
  9000. </member>
  9001. <member name="P:Google.Protobuf.WellKnownTypes.Type.Options">
  9002. <summary>
  9003. The protocol buffer options.
  9004. </summary>
  9005. </member>
  9006. <member name="F:Google.Protobuf.WellKnownTypes.Type.SourceContextFieldNumber">
  9007. <summary>Field number for the "source_context" field.</summary>
  9008. </member>
  9009. <member name="P:Google.Protobuf.WellKnownTypes.Type.SourceContext">
  9010. <summary>
  9011. The source context.
  9012. </summary>
  9013. </member>
  9014. <member name="F:Google.Protobuf.WellKnownTypes.Type.SyntaxFieldNumber">
  9015. <summary>Field number for the "syntax" field.</summary>
  9016. </member>
  9017. <member name="P:Google.Protobuf.WellKnownTypes.Type.Syntax">
  9018. <summary>
  9019. The source syntax.
  9020. </summary>
  9021. </member>
  9022. <member name="T:Google.Protobuf.WellKnownTypes.Field">
  9023. <summary>
  9024. A single field of a message type.
  9025. </summary>
  9026. </member>
  9027. <member name="F:Google.Protobuf.WellKnownTypes.Field.KindFieldNumber">
  9028. <summary>Field number for the "kind" field.</summary>
  9029. </member>
  9030. <member name="P:Google.Protobuf.WellKnownTypes.Field.Kind">
  9031. <summary>
  9032. The field type.
  9033. </summary>
  9034. </member>
  9035. <member name="F:Google.Protobuf.WellKnownTypes.Field.CardinalityFieldNumber">
  9036. <summary>Field number for the "cardinality" field.</summary>
  9037. </member>
  9038. <member name="P:Google.Protobuf.WellKnownTypes.Field.Cardinality">
  9039. <summary>
  9040. The field cardinality.
  9041. </summary>
  9042. </member>
  9043. <member name="F:Google.Protobuf.WellKnownTypes.Field.NumberFieldNumber">
  9044. <summary>Field number for the "number" field.</summary>
  9045. </member>
  9046. <member name="P:Google.Protobuf.WellKnownTypes.Field.Number">
  9047. <summary>
  9048. The field number.
  9049. </summary>
  9050. </member>
  9051. <member name="F:Google.Protobuf.WellKnownTypes.Field.NameFieldNumber">
  9052. <summary>Field number for the "name" field.</summary>
  9053. </member>
  9054. <member name="P:Google.Protobuf.WellKnownTypes.Field.Name">
  9055. <summary>
  9056. The field name.
  9057. </summary>
  9058. </member>
  9059. <member name="F:Google.Protobuf.WellKnownTypes.Field.TypeUrlFieldNumber">
  9060. <summary>Field number for the "type_url" field.</summary>
  9061. </member>
  9062. <member name="P:Google.Protobuf.WellKnownTypes.Field.TypeUrl">
  9063. <summary>
  9064. The field type URL, without the scheme, for message or enumeration
  9065. types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
  9066. </summary>
  9067. </member>
  9068. <member name="F:Google.Protobuf.WellKnownTypes.Field.OneofIndexFieldNumber">
  9069. <summary>Field number for the "oneof_index" field.</summary>
  9070. </member>
  9071. <member name="P:Google.Protobuf.WellKnownTypes.Field.OneofIndex">
  9072. <summary>
  9073. The index of the field type in `Type.oneofs`, for message or enumeration
  9074. types. The first type has index 1; zero means the type is not in the list.
  9075. </summary>
  9076. </member>
  9077. <member name="F:Google.Protobuf.WellKnownTypes.Field.PackedFieldNumber">
  9078. <summary>Field number for the "packed" field.</summary>
  9079. </member>
  9080. <member name="P:Google.Protobuf.WellKnownTypes.Field.Packed">
  9081. <summary>
  9082. Whether to use alternative packed wire representation.
  9083. </summary>
  9084. </member>
  9085. <member name="F:Google.Protobuf.WellKnownTypes.Field.OptionsFieldNumber">
  9086. <summary>Field number for the "options" field.</summary>
  9087. </member>
  9088. <member name="P:Google.Protobuf.WellKnownTypes.Field.Options">
  9089. <summary>
  9090. The protocol buffer options.
  9091. </summary>
  9092. </member>
  9093. <member name="F:Google.Protobuf.WellKnownTypes.Field.JsonNameFieldNumber">
  9094. <summary>Field number for the "json_name" field.</summary>
  9095. </member>
  9096. <member name="P:Google.Protobuf.WellKnownTypes.Field.JsonName">
  9097. <summary>
  9098. The field JSON name.
  9099. </summary>
  9100. </member>
  9101. <member name="F:Google.Protobuf.WellKnownTypes.Field.DefaultValueFieldNumber">
  9102. <summary>Field number for the "default_value" field.</summary>
  9103. </member>
  9104. <member name="P:Google.Protobuf.WellKnownTypes.Field.DefaultValue">
  9105. <summary>
  9106. The string value of the default value of this field. Proto2 syntax only.
  9107. </summary>
  9108. </member>
  9109. <member name="T:Google.Protobuf.WellKnownTypes.Field.Types">
  9110. <summary>Container for nested types declared in the Field message type.</summary>
  9111. </member>
  9112. <member name="T:Google.Protobuf.WellKnownTypes.Field.Types.Kind">
  9113. <summary>
  9114. Basic field types.
  9115. </summary>
  9116. </member>
  9117. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUnknown">
  9118. <summary>
  9119. Field type unknown.
  9120. </summary>
  9121. </member>
  9122. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeDouble">
  9123. <summary>
  9124. Field type double.
  9125. </summary>
  9126. </member>
  9127. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFloat">
  9128. <summary>
  9129. Field type float.
  9130. </summary>
  9131. </member>
  9132. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeInt64">
  9133. <summary>
  9134. Field type int64.
  9135. </summary>
  9136. </member>
  9137. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUint64">
  9138. <summary>
  9139. Field type uint64.
  9140. </summary>
  9141. </member>
  9142. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeInt32">
  9143. <summary>
  9144. Field type int32.
  9145. </summary>
  9146. </member>
  9147. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFixed64">
  9148. <summary>
  9149. Field type fixed64.
  9150. </summary>
  9151. </member>
  9152. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeFixed32">
  9153. <summary>
  9154. Field type fixed32.
  9155. </summary>
  9156. </member>
  9157. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeBool">
  9158. <summary>
  9159. Field type bool.
  9160. </summary>
  9161. </member>
  9162. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeString">
  9163. <summary>
  9164. Field type string.
  9165. </summary>
  9166. </member>
  9167. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeGroup">
  9168. <summary>
  9169. Field type group. Proto2 syntax only, and deprecated.
  9170. </summary>
  9171. </member>
  9172. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeMessage">
  9173. <summary>
  9174. Field type message.
  9175. </summary>
  9176. </member>
  9177. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeBytes">
  9178. <summary>
  9179. Field type bytes.
  9180. </summary>
  9181. </member>
  9182. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeUint32">
  9183. <summary>
  9184. Field type uint32.
  9185. </summary>
  9186. </member>
  9187. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeEnum">
  9188. <summary>
  9189. Field type enum.
  9190. </summary>
  9191. </member>
  9192. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSfixed32">
  9193. <summary>
  9194. Field type sfixed32.
  9195. </summary>
  9196. </member>
  9197. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSfixed64">
  9198. <summary>
  9199. Field type sfixed64.
  9200. </summary>
  9201. </member>
  9202. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSint32">
  9203. <summary>
  9204. Field type sint32.
  9205. </summary>
  9206. </member>
  9207. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Kind.TypeSint64">
  9208. <summary>
  9209. Field type sint64.
  9210. </summary>
  9211. </member>
  9212. <member name="T:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality">
  9213. <summary>
  9214. Whether a field is optional, required, or repeated.
  9215. </summary>
  9216. </member>
  9217. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Unknown">
  9218. <summary>
  9219. For fields with unknown cardinality.
  9220. </summary>
  9221. </member>
  9222. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Optional">
  9223. <summary>
  9224. For optional fields.
  9225. </summary>
  9226. </member>
  9227. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Required">
  9228. <summary>
  9229. For required fields. Proto2 syntax only.
  9230. </summary>
  9231. </member>
  9232. <member name="F:Google.Protobuf.WellKnownTypes.Field.Types.Cardinality.Repeated">
  9233. <summary>
  9234. For repeated fields.
  9235. </summary>
  9236. </member>
  9237. <member name="T:Google.Protobuf.WellKnownTypes.Enum">
  9238. <summary>
  9239. Enum type definition.
  9240. </summary>
  9241. </member>
  9242. <member name="F:Google.Protobuf.WellKnownTypes.Enum.NameFieldNumber">
  9243. <summary>Field number for the "name" field.</summary>
  9244. </member>
  9245. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Name">
  9246. <summary>
  9247. Enum type name.
  9248. </summary>
  9249. </member>
  9250. <member name="F:Google.Protobuf.WellKnownTypes.Enum.EnumvalueFieldNumber">
  9251. <summary>Field number for the "enumvalue" field.</summary>
  9252. </member>
  9253. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Enumvalue">
  9254. <summary>
  9255. Enum value definitions.
  9256. </summary>
  9257. </member>
  9258. <member name="F:Google.Protobuf.WellKnownTypes.Enum.OptionsFieldNumber">
  9259. <summary>Field number for the "options" field.</summary>
  9260. </member>
  9261. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Options">
  9262. <summary>
  9263. Protocol buffer options.
  9264. </summary>
  9265. </member>
  9266. <member name="F:Google.Protobuf.WellKnownTypes.Enum.SourceContextFieldNumber">
  9267. <summary>Field number for the "source_context" field.</summary>
  9268. </member>
  9269. <member name="P:Google.Protobuf.WellKnownTypes.Enum.SourceContext">
  9270. <summary>
  9271. The source context.
  9272. </summary>
  9273. </member>
  9274. <member name="F:Google.Protobuf.WellKnownTypes.Enum.SyntaxFieldNumber">
  9275. <summary>Field number for the "syntax" field.</summary>
  9276. </member>
  9277. <member name="P:Google.Protobuf.WellKnownTypes.Enum.Syntax">
  9278. <summary>
  9279. The source syntax.
  9280. </summary>
  9281. </member>
  9282. <member name="T:Google.Protobuf.WellKnownTypes.EnumValue">
  9283. <summary>
  9284. Enum value definition.
  9285. </summary>
  9286. </member>
  9287. <member name="F:Google.Protobuf.WellKnownTypes.EnumValue.NameFieldNumber">
  9288. <summary>Field number for the "name" field.</summary>
  9289. </member>
  9290. <member name="P:Google.Protobuf.WellKnownTypes.EnumValue.Name">
  9291. <summary>
  9292. Enum value name.
  9293. </summary>
  9294. </member>
  9295. <member name="F:Google.Protobuf.WellKnownTypes.EnumValue.NumberFieldNumber">
  9296. <summary>Field number for the "number" field.</summary>
  9297. </member>
  9298. <member name="P:Google.Protobuf.WellKnownTypes.EnumValue.Number">
  9299. <summary>
  9300. Enum value number.
  9301. </summary>
  9302. </member>
  9303. <member name="F:Google.Protobuf.WellKnownTypes.EnumValue.OptionsFieldNumber">
  9304. <summary>Field number for the "options" field.</summary>
  9305. </member>
  9306. <member name="P:Google.Protobuf.WellKnownTypes.EnumValue.Options">
  9307. <summary>
  9308. Protocol buffer options.
  9309. </summary>
  9310. </member>
  9311. <member name="T:Google.Protobuf.WellKnownTypes.Option">
  9312. <summary>
  9313. A protocol buffer option, which can be attached to a message, field,
  9314. enumeration, etc.
  9315. </summary>
  9316. </member>
  9317. <member name="F:Google.Protobuf.WellKnownTypes.Option.NameFieldNumber">
  9318. <summary>Field number for the "name" field.</summary>
  9319. </member>
  9320. <member name="P:Google.Protobuf.WellKnownTypes.Option.Name">
  9321. <summary>
  9322. The option's name. For protobuf built-in options (options defined in
  9323. descriptor.proto), this is the short name. For example, `"map_entry"`.
  9324. For custom options, it should be the fully-qualified name. For example,
  9325. `"google.api.http"`.
  9326. </summary>
  9327. </member>
  9328. <member name="F:Google.Protobuf.WellKnownTypes.Option.ValueFieldNumber">
  9329. <summary>Field number for the "value" field.</summary>
  9330. </member>
  9331. <member name="P:Google.Protobuf.WellKnownTypes.Option.Value">
  9332. <summary>
  9333. The option's value packed in an Any message. If the value is a primitive,
  9334. the corresponding wrapper type defined in google/protobuf/wrappers.proto
  9335. should be used. If the value is an enum, it should be stored as an int32
  9336. value using the google.protobuf.Int32Value type.
  9337. </summary>
  9338. </member>
  9339. <member name="T:Google.Protobuf.WellKnownTypes.WrappersReflection">
  9340. <summary>Holder for reflection information generated from google/protobuf/wrappers.proto</summary>
  9341. </member>
  9342. <member name="P:Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor">
  9343. <summary>File descriptor for google/protobuf/wrappers.proto</summary>
  9344. </member>
  9345. <member name="F:Google.Protobuf.WellKnownTypes.WrappersReflection.WrapperValueFieldNumber">
  9346. <summary>
  9347. Field number for the single "value" field in all wrapper types.
  9348. </summary>
  9349. </member>
  9350. <member name="T:Google.Protobuf.WellKnownTypes.DoubleValue">
  9351. <summary>
  9352. Wrapper message for `double`.
  9353. The JSON representation for `DoubleValue` is JSON number.
  9354. </summary>
  9355. </member>
  9356. <member name="F:Google.Protobuf.WellKnownTypes.DoubleValue.ValueFieldNumber">
  9357. <summary>Field number for the "value" field.</summary>
  9358. </member>
  9359. <member name="P:Google.Protobuf.WellKnownTypes.DoubleValue.Value">
  9360. <summary>
  9361. The double value.
  9362. </summary>
  9363. </member>
  9364. <member name="T:Google.Protobuf.WellKnownTypes.FloatValue">
  9365. <summary>
  9366. Wrapper message for `float`.
  9367. The JSON representation for `FloatValue` is JSON number.
  9368. </summary>
  9369. </member>
  9370. <member name="F:Google.Protobuf.WellKnownTypes.FloatValue.ValueFieldNumber">
  9371. <summary>Field number for the "value" field.</summary>
  9372. </member>
  9373. <member name="P:Google.Protobuf.WellKnownTypes.FloatValue.Value">
  9374. <summary>
  9375. The float value.
  9376. </summary>
  9377. </member>
  9378. <member name="T:Google.Protobuf.WellKnownTypes.Int64Value">
  9379. <summary>
  9380. Wrapper message for `int64`.
  9381. The JSON representation for `Int64Value` is JSON string.
  9382. </summary>
  9383. </member>
  9384. <member name="F:Google.Protobuf.WellKnownTypes.Int64Value.ValueFieldNumber">
  9385. <summary>Field number for the "value" field.</summary>
  9386. </member>
  9387. <member name="P:Google.Protobuf.WellKnownTypes.Int64Value.Value">
  9388. <summary>
  9389. The int64 value.
  9390. </summary>
  9391. </member>
  9392. <member name="T:Google.Protobuf.WellKnownTypes.UInt64Value">
  9393. <summary>
  9394. Wrapper message for `uint64`.
  9395. The JSON representation for `UInt64Value` is JSON string.
  9396. </summary>
  9397. </member>
  9398. <member name="F:Google.Protobuf.WellKnownTypes.UInt64Value.ValueFieldNumber">
  9399. <summary>Field number for the "value" field.</summary>
  9400. </member>
  9401. <member name="P:Google.Protobuf.WellKnownTypes.UInt64Value.Value">
  9402. <summary>
  9403. The uint64 value.
  9404. </summary>
  9405. </member>
  9406. <member name="T:Google.Protobuf.WellKnownTypes.Int32Value">
  9407. <summary>
  9408. Wrapper message for `int32`.
  9409. The JSON representation for `Int32Value` is JSON number.
  9410. </summary>
  9411. </member>
  9412. <member name="F:Google.Protobuf.WellKnownTypes.Int32Value.ValueFieldNumber">
  9413. <summary>Field number for the "value" field.</summary>
  9414. </member>
  9415. <member name="P:Google.Protobuf.WellKnownTypes.Int32Value.Value">
  9416. <summary>
  9417. The int32 value.
  9418. </summary>
  9419. </member>
  9420. <member name="T:Google.Protobuf.WellKnownTypes.UInt32Value">
  9421. <summary>
  9422. Wrapper message for `uint32`.
  9423. The JSON representation for `UInt32Value` is JSON number.
  9424. </summary>
  9425. </member>
  9426. <member name="F:Google.Protobuf.WellKnownTypes.UInt32Value.ValueFieldNumber">
  9427. <summary>Field number for the "value" field.</summary>
  9428. </member>
  9429. <member name="P:Google.Protobuf.WellKnownTypes.UInt32Value.Value">
  9430. <summary>
  9431. The uint32 value.
  9432. </summary>
  9433. </member>
  9434. <member name="T:Google.Protobuf.WellKnownTypes.BoolValue">
  9435. <summary>
  9436. Wrapper message for `bool`.
  9437. The JSON representation for `BoolValue` is JSON `true` and `false`.
  9438. </summary>
  9439. </member>
  9440. <member name="F:Google.Protobuf.WellKnownTypes.BoolValue.ValueFieldNumber">
  9441. <summary>Field number for the "value" field.</summary>
  9442. </member>
  9443. <member name="P:Google.Protobuf.WellKnownTypes.BoolValue.Value">
  9444. <summary>
  9445. The bool value.
  9446. </summary>
  9447. </member>
  9448. <member name="T:Google.Protobuf.WellKnownTypes.StringValue">
  9449. <summary>
  9450. Wrapper message for `string`.
  9451. The JSON representation for `StringValue` is JSON string.
  9452. </summary>
  9453. </member>
  9454. <member name="F:Google.Protobuf.WellKnownTypes.StringValue.ValueFieldNumber">
  9455. <summary>Field number for the "value" field.</summary>
  9456. </member>
  9457. <member name="P:Google.Protobuf.WellKnownTypes.StringValue.Value">
  9458. <summary>
  9459. The string value.
  9460. </summary>
  9461. </member>
  9462. <member name="T:Google.Protobuf.WellKnownTypes.BytesValue">
  9463. <summary>
  9464. Wrapper message for `bytes`.
  9465. The JSON representation for `BytesValue` is JSON string.
  9466. </summary>
  9467. </member>
  9468. <member name="F:Google.Protobuf.WellKnownTypes.BytesValue.ValueFieldNumber">
  9469. <summary>Field number for the "value" field.</summary>
  9470. </member>
  9471. <member name="P:Google.Protobuf.WellKnownTypes.BytesValue.Value">
  9472. <summary>
  9473. The bytes value.
  9474. </summary>
  9475. </member>
  9476. <member name="T:Google.Protobuf.WireFormat">
  9477. <summary>
  9478. This class is used internally by the Protocol Buffer Library and generated
  9479. message implementations. It is public only for the sake of those generated
  9480. messages. Others should not use this class directly.
  9481. <para>
  9482. This class contains constants and helper functions useful for dealing with
  9483. the Protocol Buffer wire format.
  9484. </para>
  9485. </summary>
  9486. </member>
  9487. <member name="T:Google.Protobuf.WireFormat.WireType">
  9488. <summary>
  9489. Wire types within protobuf encoding.
  9490. </summary>
  9491. </member>
  9492. <member name="F:Google.Protobuf.WireFormat.WireType.Varint">
  9493. <summary>
  9494. Variable-length integer.
  9495. </summary>
  9496. </member>
  9497. <member name="F:Google.Protobuf.WireFormat.WireType.Fixed64">
  9498. <summary>
  9499. A fixed-length 64-bit value.
  9500. </summary>
  9501. </member>
  9502. <member name="F:Google.Protobuf.WireFormat.WireType.LengthDelimited">
  9503. <summary>
  9504. A length-delimited value, i.e. a length followed by that many bytes of data.
  9505. </summary>
  9506. </member>
  9507. <member name="F:Google.Protobuf.WireFormat.WireType.StartGroup">
  9508. <summary>
  9509. A "start group" value
  9510. </summary>
  9511. </member>
  9512. <member name="F:Google.Protobuf.WireFormat.WireType.EndGroup">
  9513. <summary>
  9514. An "end group" value
  9515. </summary>
  9516. </member>
  9517. <member name="F:Google.Protobuf.WireFormat.WireType.Fixed32">
  9518. <summary>
  9519. A fixed-length 32-bit value.
  9520. </summary>
  9521. </member>
  9522. <member name="M:Google.Protobuf.WireFormat.GetTagWireType(System.UInt32)">
  9523. <summary>
  9524. Given a tag value, determines the wire type (lower 3 bits).
  9525. </summary>
  9526. </member>
  9527. <member name="M:Google.Protobuf.WireFormat.GetTagFieldNumber(System.UInt32)">
  9528. <summary>
  9529. Given a tag value, determines the field number (the upper 29 bits).
  9530. </summary>
  9531. </member>
  9532. <member name="M:Google.Protobuf.WireFormat.MakeTag(System.Int32,Google.Protobuf.WireFormat.WireType)">
  9533. <summary>
  9534. Makes a tag value given a field number and wire type.
  9535. </summary>
  9536. </member>
  9537. <member name="T:Google.Protobuf.WriteBufferHelper">
  9538. <summary>
  9539. Abstraction for writing to a steam / IBufferWriter
  9540. </summary>
  9541. </member>
  9542. <member name="M:Google.Protobuf.WriteBufferHelper.Initialize(Google.Protobuf.CodedOutputStream,Google.Protobuf.WriteBufferHelper@)">
  9543. <summary>
  9544. Initialize an instance with a coded output stream.
  9545. This approach is faster than using a constructor because the instance to initialize is passed by reference
  9546. and we can write directly into it without copying.
  9547. </summary>
  9548. </member>
  9549. <member name="M:Google.Protobuf.WriteBufferHelper.Initialize(System.Buffers.IBufferWriter{System.Byte},Google.Protobuf.WriteBufferHelper@,System.Span{System.Byte}@)">
  9550. <summary>
  9551. Initialize an instance with a buffer writer.
  9552. This approach is faster than using a constructor because the instance to initialize is passed by reference
  9553. and we can write directly into it without copying.
  9554. </summary>
  9555. </member>
  9556. <member name="M:Google.Protobuf.WriteBufferHelper.InitializeNonRefreshable(Google.Protobuf.WriteBufferHelper@)">
  9557. <summary>
  9558. Initialize an instance with a buffer represented by a single span (i.e. buffer cannot be refreshed)
  9559. This approach is faster than using a constructor because the instance to initialize is passed by reference
  9560. and we can write directly into it without copying.
  9561. </summary>
  9562. </member>
  9563. <member name="M:Google.Protobuf.WriteBufferHelper.CheckNoSpaceLeft(Google.Protobuf.WriterInternalState@)">
  9564. <summary>
  9565. Verifies that SpaceLeft returns zero.
  9566. </summary>
  9567. </member>
  9568. <member name="M:Google.Protobuf.WriteBufferHelper.GetSpaceLeft(Google.Protobuf.WriterInternalState@)">
  9569. <summary>
  9570. If writing to a flat array, returns the space left in the array. Otherwise,
  9571. throws an InvalidOperationException.
  9572. </summary>
  9573. </member>
  9574. <member name="T:Google.Protobuf.WriteContext">
  9575. <summary>
  9576. An opaque struct that represents the current serialization state and is passed along
  9577. as the serialization proceeds.
  9578. All the public methods are intended to be invoked only by the generated code,
  9579. users should never invoke them directly.
  9580. </summary>
  9581. </member>
  9582. <member name="M:Google.Protobuf.WriteContext.Initialize(Google.Protobuf.CodedOutputStream,Google.Protobuf.WriteContext@)">
  9583. <summary>
  9584. Creates a WriteContext instance from CodedOutputStream.
  9585. WARNING: internally this copies the CodedOutputStream's state, so after done with the WriteContext,
  9586. the CodedOutputStream's state needs to be updated.
  9587. </summary>
  9588. </member>
  9589. <member name="M:Google.Protobuf.WriteContext.WriteDouble(System.Double)">
  9590. <summary>
  9591. Writes a double field value, without a tag.
  9592. </summary>
  9593. <param name="value">The value to write</param>
  9594. </member>
  9595. <member name="M:Google.Protobuf.WriteContext.WriteFloat(System.Single)">
  9596. <summary>
  9597. Writes a float field value, without a tag.
  9598. </summary>
  9599. <param name="value">The value to write</param>
  9600. </member>
  9601. <member name="M:Google.Protobuf.WriteContext.WriteUInt64(System.UInt64)">
  9602. <summary>
  9603. Writes a uint64 field value, without a tag.
  9604. </summary>
  9605. <param name="value">The value to write</param>
  9606. </member>
  9607. <member name="M:Google.Protobuf.WriteContext.WriteInt64(System.Int64)">
  9608. <summary>
  9609. Writes an int64 field value, without a tag.
  9610. </summary>
  9611. <param name="value">The value to write</param>
  9612. </member>
  9613. <member name="M:Google.Protobuf.WriteContext.WriteInt32(System.Int32)">
  9614. <summary>
  9615. Writes an int32 field value, without a tag.
  9616. </summary>
  9617. <param name="value">The value to write</param>
  9618. </member>
  9619. <member name="M:Google.Protobuf.WriteContext.WriteFixed64(System.UInt64)">
  9620. <summary>
  9621. Writes a fixed64 field value, without a tag.
  9622. </summary>
  9623. <param name="value">The value to write</param>
  9624. </member>
  9625. <member name="M:Google.Protobuf.WriteContext.WriteFixed32(System.UInt32)">
  9626. <summary>
  9627. Writes a fixed32 field value, without a tag.
  9628. </summary>
  9629. <param name="value">The value to write</param>
  9630. </member>
  9631. <member name="M:Google.Protobuf.WriteContext.WriteBool(System.Boolean)">
  9632. <summary>
  9633. Writes a bool field value, without a tag.
  9634. </summary>
  9635. <param name="value">The value to write</param>
  9636. </member>
  9637. <member name="M:Google.Protobuf.WriteContext.WriteString(System.String)">
  9638. <summary>
  9639. Writes a string field value, without a tag.
  9640. The data is length-prefixed.
  9641. </summary>
  9642. <param name="value">The value to write</param>
  9643. </member>
  9644. <member name="M:Google.Protobuf.WriteContext.WriteMessage(Google.Protobuf.IMessage)">
  9645. <summary>
  9646. Writes a message, without a tag.
  9647. The data is length-prefixed.
  9648. </summary>
  9649. <param name="value">The value to write</param>
  9650. </member>
  9651. <member name="M:Google.Protobuf.WriteContext.WriteGroup(Google.Protobuf.IMessage)">
  9652. <summary>
  9653. Writes a group, without a tag, to the stream.
  9654. </summary>
  9655. <param name="value">The value to write</param>
  9656. </member>
  9657. <member name="M:Google.Protobuf.WriteContext.WriteBytes(Google.Protobuf.ByteString)">
  9658. <summary>
  9659. Write a byte string, without a tag, to the stream.
  9660. The data is length-prefixed.
  9661. </summary>
  9662. <param name="value">The value to write</param>
  9663. </member>
  9664. <member name="M:Google.Protobuf.WriteContext.WriteUInt32(System.UInt32)">
  9665. <summary>
  9666. Writes a uint32 value, without a tag.
  9667. </summary>
  9668. <param name="value">The value to write</param>
  9669. </member>
  9670. <member name="M:Google.Protobuf.WriteContext.WriteEnum(System.Int32)">
  9671. <summary>
  9672. Writes an enum value, without a tag.
  9673. </summary>
  9674. <param name="value">The value to write</param>
  9675. </member>
  9676. <member name="M:Google.Protobuf.WriteContext.WriteSFixed32(System.Int32)">
  9677. <summary>
  9678. Writes an sfixed32 value, without a tag.
  9679. </summary>
  9680. <param name="value">The value to write.</param>
  9681. </member>
  9682. <member name="M:Google.Protobuf.WriteContext.WriteSFixed64(System.Int64)">
  9683. <summary>
  9684. Writes an sfixed64 value, without a tag.
  9685. </summary>
  9686. <param name="value">The value to write</param>
  9687. </member>
  9688. <member name="M:Google.Protobuf.WriteContext.WriteSInt32(System.Int32)">
  9689. <summary>
  9690. Writes an sint32 value, without a tag.
  9691. </summary>
  9692. <param name="value">The value to write</param>
  9693. </member>
  9694. <member name="M:Google.Protobuf.WriteContext.WriteSInt64(System.Int64)">
  9695. <summary>
  9696. Writes an sint64 value, without a tag.
  9697. </summary>
  9698. <param name="value">The value to write</param>
  9699. </member>
  9700. <member name="M:Google.Protobuf.WriteContext.WriteLength(System.Int32)">
  9701. <summary>
  9702. Writes a length (in bytes) for length-delimited data.
  9703. </summary>
  9704. <remarks>
  9705. This method simply writes a rawint, but exists for clarity in calling code.
  9706. </remarks>
  9707. <param name="length">Length value, in bytes.</param>
  9708. </member>
  9709. <member name="M:Google.Protobuf.WriteContext.WriteTag(System.Int32,Google.Protobuf.WireFormat.WireType)">
  9710. <summary>
  9711. Encodes and writes a tag.
  9712. </summary>
  9713. <param name="fieldNumber">The number of the field to write the tag for</param>
  9714. <param name="type">The wire format type of the tag to write</param>
  9715. </member>
  9716. <member name="M:Google.Protobuf.WriteContext.WriteTag(System.UInt32)">
  9717. <summary>
  9718. Writes an already-encoded tag.
  9719. </summary>
  9720. <param name="tag">The encoded tag</param>
  9721. </member>
  9722. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte)">
  9723. <summary>
  9724. Writes the given single-byte tag.
  9725. </summary>
  9726. <param name="b1">The encoded tag</param>
  9727. </member>
  9728. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte)">
  9729. <summary>
  9730. Writes the given two-byte tag.
  9731. </summary>
  9732. <param name="b1">The first byte of the encoded tag</param>
  9733. <param name="b2">The second byte of the encoded tag</param>
  9734. </member>
  9735. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte,System.Byte)">
  9736. <summary>
  9737. Writes the given three-byte tag.
  9738. </summary>
  9739. <param name="b1">The first byte of the encoded tag</param>
  9740. <param name="b2">The second byte of the encoded tag</param>
  9741. <param name="b3">The third byte of the encoded tag</param>
  9742. </member>
  9743. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte)">
  9744. <summary>
  9745. Writes the given four-byte tag.
  9746. </summary>
  9747. <param name="b1">The first byte of the encoded tag</param>
  9748. <param name="b2">The second byte of the encoded tag</param>
  9749. <param name="b3">The third byte of the encoded tag</param>
  9750. <param name="b4">The fourth byte of the encoded tag</param>
  9751. </member>
  9752. <member name="M:Google.Protobuf.WriteContext.WriteRawTag(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
  9753. <summary>
  9754. Writes the given five-byte tag.
  9755. </summary>
  9756. <param name="b1">The first byte of the encoded tag</param>
  9757. <param name="b2">The second byte of the encoded tag</param>
  9758. <param name="b3">The third byte of the encoded tag</param>
  9759. <param name="b4">The fourth byte of the encoded tag</param>
  9760. <param name="b5">The fifth byte of the encoded tag</param>
  9761. </member>
  9762. <member name="T:Google.Protobuf.WritingPrimitives">
  9763. <summary>
  9764. Primitives for encoding protobuf wire format.
  9765. </summary>
  9766. </member>
  9767. <member name="M:Google.Protobuf.WritingPrimitives.WriteDouble(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Double)">
  9768. <summary>
  9769. Writes a double field value, without a tag, to the stream.
  9770. </summary>
  9771. </member>
  9772. <member name="M:Google.Protobuf.WritingPrimitives.WriteFloat(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Single)">
  9773. <summary>
  9774. Writes a float field value, without a tag, to the stream.
  9775. </summary>
  9776. </member>
  9777. <member name="M:Google.Protobuf.WritingPrimitives.WriteUInt64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt64)">
  9778. <summary>
  9779. Writes a uint64 field value, without a tag, to the stream.
  9780. </summary>
  9781. </member>
  9782. <member name="M:Google.Protobuf.WritingPrimitives.WriteInt64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int64)">
  9783. <summary>
  9784. Writes an int64 field value, without a tag, to the stream.
  9785. </summary>
  9786. </member>
  9787. <member name="M:Google.Protobuf.WritingPrimitives.WriteInt32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9788. <summary>
  9789. Writes an int32 field value, without a tag, to the stream.
  9790. </summary>
  9791. </member>
  9792. <member name="M:Google.Protobuf.WritingPrimitives.WriteFixed64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt64)">
  9793. <summary>
  9794. Writes a fixed64 field value, without a tag, to the stream.
  9795. </summary>
  9796. </member>
  9797. <member name="M:Google.Protobuf.WritingPrimitives.WriteFixed32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9798. <summary>
  9799. Writes a fixed32 field value, without a tag, to the stream.
  9800. </summary>
  9801. </member>
  9802. <member name="M:Google.Protobuf.WritingPrimitives.WriteBool(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Boolean)">
  9803. <summary>
  9804. Writes a bool field value, without a tag, to the stream.
  9805. </summary>
  9806. </member>
  9807. <member name="M:Google.Protobuf.WritingPrimitives.WriteString(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.String)">
  9808. <summary>
  9809. Writes a string field value, without a tag, to the stream.
  9810. The data is length-prefixed.
  9811. </summary>
  9812. </member>
  9813. <member name="M:Google.Protobuf.WritingPrimitives.NarrowFourUtf16CharsToAsciiAndWriteToBuffer(System.Byte@,System.UInt64)">
  9814. <summary>
  9815. Given a QWORD which represents a buffer of 4 ASCII chars in machine-endian order,
  9816. narrows each WORD to a BYTE, then writes the 4-byte result to the output buffer
  9817. also in machine-endian order.
  9818. </summary>
  9819. </member>
  9820. <member name="M:Google.Protobuf.WritingPrimitives.WriteBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,Google.Protobuf.ByteString)">
  9821. <summary>
  9822. Write a byte string, without a tag, to the stream.
  9823. The data is length-prefixed.
  9824. </summary>
  9825. </member>
  9826. <member name="M:Google.Protobuf.WritingPrimitives.WriteUInt32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9827. <summary>
  9828. Writes a uint32 value, without a tag, to the stream.
  9829. </summary>
  9830. </member>
  9831. <member name="M:Google.Protobuf.WritingPrimitives.WriteEnum(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9832. <summary>
  9833. Writes an enum value, without a tag, to the stream.
  9834. </summary>
  9835. </member>
  9836. <member name="M:Google.Protobuf.WritingPrimitives.WriteSFixed32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9837. <summary>
  9838. Writes an sfixed32 value, without a tag, to the stream.
  9839. </summary>
  9840. </member>
  9841. <member name="M:Google.Protobuf.WritingPrimitives.WriteSFixed64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int64)">
  9842. <summary>
  9843. Writes an sfixed64 value, without a tag, to the stream.
  9844. </summary>
  9845. </member>
  9846. <member name="M:Google.Protobuf.WritingPrimitives.WriteSInt32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9847. <summary>
  9848. Writes an sint32 value, without a tag, to the stream.
  9849. </summary>
  9850. </member>
  9851. <member name="M:Google.Protobuf.WritingPrimitives.WriteSInt64(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int64)">
  9852. <summary>
  9853. Writes an sint64 value, without a tag, to the stream.
  9854. </summary>
  9855. </member>
  9856. <member name="M:Google.Protobuf.WritingPrimitives.WriteLength(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32)">
  9857. <summary>
  9858. Writes a length (in bytes) for length-delimited data.
  9859. </summary>
  9860. <remarks>
  9861. This method simply writes a rawint, but exists for clarity in calling code.
  9862. </remarks>
  9863. </member>
  9864. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawVarint32(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9865. <summary>
  9866. Writes a 32 bit value as a varint. The fast route is taken when
  9867. there's enough buffer space left to whizz through without checking
  9868. for each byte; otherwise, we resort to calling WriteRawByte each time.
  9869. </summary>
  9870. </member>
  9871. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte[])">
  9872. <summary>
  9873. Writes out an array of bytes.
  9874. </summary>
  9875. </member>
  9876. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte[],System.Int32,System.Int32)">
  9877. <summary>
  9878. Writes out part of an array of bytes.
  9879. </summary>
  9880. </member>
  9881. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawBytes(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.ReadOnlySpan{System.Byte})">
  9882. <summary>
  9883. Writes out part of an array of bytes.
  9884. </summary>
  9885. </member>
  9886. <member name="M:Google.Protobuf.WritingPrimitives.WriteTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Int32,Google.Protobuf.WireFormat.WireType)">
  9887. <summary>
  9888. Encodes and writes a tag.
  9889. </summary>
  9890. </member>
  9891. <member name="M:Google.Protobuf.WritingPrimitives.WriteTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.UInt32)">
  9892. <summary>
  9893. Writes an already-encoded tag.
  9894. </summary>
  9895. </member>
  9896. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte)">
  9897. <summary>
  9898. Writes the given single-byte tag directly to the stream.
  9899. </summary>
  9900. </member>
  9901. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte)">
  9902. <summary>
  9903. Writes the given two-byte tag directly to the stream.
  9904. </summary>
  9905. </member>
  9906. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte,System.Byte)">
  9907. <summary>
  9908. Writes the given three-byte tag directly to the stream.
  9909. </summary>
  9910. </member>
  9911. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte,System.Byte,System.Byte)">
  9912. <summary>
  9913. Writes the given four-byte tag directly to the stream.
  9914. </summary>
  9915. </member>
  9916. <member name="M:Google.Protobuf.WritingPrimitives.WriteRawTag(System.Span{System.Byte}@,Google.Protobuf.WriterInternalState@,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)">
  9917. <summary>
  9918. Writes the given five-byte tag directly to the stream.
  9919. </summary>
  9920. </member>
  9921. <member name="M:Google.Protobuf.WritingPrimitives.EncodeZigZag32(System.Int32)">
  9922. <summary>
  9923. Encode a 32-bit value with ZigZag encoding.
  9924. </summary>
  9925. <remarks>
  9926. ZigZag encodes signed integers into values that can be efficiently
  9927. encoded with varint. (Otherwise, negative values must be
  9928. sign-extended to 64 bits to be varint encoded, thus always taking
  9929. 10 bytes on the wire.)
  9930. </remarks>
  9931. </member>
  9932. <member name="M:Google.Protobuf.WritingPrimitives.EncodeZigZag64(System.Int64)">
  9933. <summary>
  9934. Encode a 64-bit value with ZigZag encoding.
  9935. </summary>
  9936. <remarks>
  9937. ZigZag encodes signed integers into values that can be efficiently
  9938. encoded with varint. (Otherwise, negative values must be
  9939. sign-extended to 64 bits to be varint encoded, thus always taking
  9940. 10 bytes on the wire.)
  9941. </remarks>
  9942. </member>
  9943. <member name="T:Google.Protobuf.WritingPrimitivesMessages">
  9944. <summary>
  9945. Writing messages / groups.
  9946. </summary>
  9947. </member>
  9948. <member name="M:Google.Protobuf.WritingPrimitivesMessages.WriteMessage(Google.Protobuf.WriteContext@,Google.Protobuf.IMessage)">
  9949. <summary>
  9950. Writes a message, without a tag.
  9951. The data is length-prefixed.
  9952. </summary>
  9953. </member>
  9954. <member name="M:Google.Protobuf.WritingPrimitivesMessages.WriteGroup(Google.Protobuf.WriteContext@,Google.Protobuf.IMessage)">
  9955. <summary>
  9956. Writes a group, without a tag.
  9957. </summary>
  9958. </member>
  9959. <member name="M:Google.Protobuf.WritingPrimitivesMessages.WriteRawMessage(Google.Protobuf.WriteContext@,Google.Protobuf.IMessage)">
  9960. <summary>
  9961. Writes a message, without a tag.
  9962. Message will be written without a length prefix.
  9963. </summary>
  9964. </member>
  9965. </members>
  9966. </doc>