Microsoft.Extensions.Primitives.xml 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Primitives</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Primitives.CancellationChangeToken">
  8. <summary>
  9. A <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> implementation using <see cref="T:System.Threading.CancellationToken"/>.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.#ctor(System.Threading.CancellationToken)">
  13. <summary>
  14. Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.CancellationChangeToken"/>.
  15. </summary>
  16. <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/>.</param>
  17. </member>
  18. <member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.ActiveChangeCallbacks">
  19. <inheritdoc />
  20. </member>
  21. <member name="P:Microsoft.Extensions.Primitives.CancellationChangeToken.HasChanged">
  22. <inheritdoc />
  23. </member>
  24. <member name="M:Microsoft.Extensions.Primitives.CancellationChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
  25. <inheritdoc />
  26. </member>
  27. <member name="T:Microsoft.Extensions.Primitives.ChangeToken">
  28. <summary>
  29. Propagates notifications that a change has occurred.
  30. </summary>
  31. </member>
  32. <member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action)">
  33. <summary>
  34. Registers the <paramref name="changeTokenConsumer"/> action to be called whenever the token produced changes.
  35. </summary>
  36. <param name="changeTokenProducer">Produces the change token.</param>
  37. <param name="changeTokenConsumer">Action called when the token changes.</param>
  38. <returns></returns>
  39. </member>
  40. <member name="M:Microsoft.Extensions.Primitives.ChangeToken.OnChange``1(System.Func{Microsoft.Extensions.Primitives.IChangeToken},System.Action{``0},``0)">
  41. <summary>
  42. Registers the <paramref name="changeTokenConsumer"/> action to be called whenever the token produced changes.
  43. </summary>
  44. <param name="changeTokenProducer">Produces the change token.</param>
  45. <param name="changeTokenConsumer">Action called when the token changes.</param>
  46. <param name="state">state for the consumer.</param>
  47. <returns></returns>
  48. </member>
  49. <member name="T:Microsoft.Extensions.Primitives.CompositeChangeToken">
  50. <summary>
  51. An <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> which represents one or more <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> instances.
  52. </summary>
  53. </member>
  54. <member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.#ctor(System.Collections.Generic.IReadOnlyList{Microsoft.Extensions.Primitives.IChangeToken})">
  55. <summary>
  56. Creates a new instance of <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken"/>.
  57. </summary>
  58. <param name="changeTokens">The list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> to compose.</param>
  59. </member>
  60. <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens">
  61. <summary>
  62. Returns the list of <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> which compose the current <see cref="T:Microsoft.Extensions.Primitives.CompositeChangeToken"/>.
  63. </summary>
  64. </member>
  65. <member name="M:Microsoft.Extensions.Primitives.CompositeChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
  66. <inheritdoc />
  67. </member>
  68. <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.HasChanged">
  69. <inheritdoc />
  70. </member>
  71. <member name="P:Microsoft.Extensions.Primitives.CompositeChangeToken.ActiveChangeCallbacks">
  72. <inheritdoc />
  73. </member>
  74. <member name="M:Microsoft.Extensions.Primitives.Extensions.Append(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)">
  75. <summary>
  76. Add the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to the <see cref="T:System.Text.StringBuilder"/>.
  77. </summary>
  78. <param name="builder">The <see cref="T:System.Text.StringBuilder"/> to add to.</param>
  79. <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to add.</param>
  80. <returns>The original <see cref="T:System.Text.StringBuilder"/>.</returns>
  81. </member>
  82. <member name="T:Microsoft.Extensions.Primitives.IChangeToken">
  83. <summary>
  84. Propagates notifications that a change has occurred.
  85. </summary>
  86. </member>
  87. <member name="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged">
  88. <summary>
  89. Gets a value that indicates if a change has occurred.
  90. </summary>
  91. </member>
  92. <member name="P:Microsoft.Extensions.Primitives.IChangeToken.ActiveChangeCallbacks">
  93. <summary>
  94. Indicates if this token will pro-actively raise callbacks. If <c>false</c>, the token consumer must
  95. poll <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged" /> to detect changes.
  96. </summary>
  97. </member>
  98. <member name="M:Microsoft.Extensions.Primitives.IChangeToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
  99. <summary>
  100. Registers for a callback that will be invoked when the entry has changed.
  101. <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"/> MUST be set before the callback is invoked.
  102. </summary>
  103. <param name="callback">The <see cref="T:System.Action`1"/> to invoke.</param>
  104. <param name="state">State to be passed into the callback.</param>
  105. <returns>An <see cref="T:System.IDisposable"/> that is used to unregister the callback.</returns>
  106. </member>
  107. <member name="T:Microsoft.Extensions.Primitives.StringSegment">
  108. <summary>
  109. An optimized representation of a substring.
  110. </summary>
  111. </member>
  112. <member name="F:Microsoft.Extensions.Primitives.StringSegment.Empty">
  113. <summary>
  114. A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> for <see cref="F:System.String.Empty"/>.
  115. </summary>
  116. </member>
  117. <member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String)">
  118. <summary>
  119. Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> struct.
  120. </summary>
  121. <param name="buffer">
  122. The original <see cref="T:System.String"/>. The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> includes the whole <see cref="T:System.String"/>.
  123. </param>
  124. </member>
  125. <member name="M:Microsoft.Extensions.Primitives.StringSegment.#ctor(System.String,System.Int32,System.Int32)">
  126. <summary>
  127. Initializes an instance of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> struct.
  128. </summary>
  129. <param name="buffer">The original <see cref="T:System.String"/> used as buffer.</param>
  130. <param name="offset">The offset of the segment within the <paramref name="buffer"/>.</param>
  131. <param name="length">The length of the segment.</param>
  132. <exception cref="T:System.ArgumentNullException">
  133. <paramref name="buffer"/> is <see langword="null" />.
  134. </exception>
  135. <exception cref="T:System.ArgumentOutOfRangeException">
  136. <paramref name="offset"/> or <paramref name="length"/> is less than zero, or <paramref name="offset"/> +
  137. <paramref name="length"/> is greater than the number of characters in <paramref name="buffer"/>.
  138. </exception>
  139. </member>
  140. <member name="P:Microsoft.Extensions.Primitives.StringSegment.Buffer">
  141. <summary>
  142. Gets the <see cref="T:System.String"/> buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  143. </summary>
  144. </member>
  145. <member name="P:Microsoft.Extensions.Primitives.StringSegment.Offset">
  146. <summary>
  147. Gets the offset within the buffer for this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  148. </summary>
  149. </member>
  150. <member name="P:Microsoft.Extensions.Primitives.StringSegment.Length">
  151. <summary>
  152. Gets the length of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  153. </summary>
  154. </member>
  155. <member name="P:Microsoft.Extensions.Primitives.StringSegment.Value">
  156. <summary>
  157. Gets the value of this segment as a <see cref="T:System.String"/>.
  158. </summary>
  159. </member>
  160. <member name="P:Microsoft.Extensions.Primitives.StringSegment.HasValue">
  161. <summary>
  162. Gets whether this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> contains a valid value.
  163. </summary>
  164. </member>
  165. <member name="P:Microsoft.Extensions.Primitives.StringSegment.Item(System.Int32)">
  166. <summary>
  167. Gets the <see cref="T:System.Char"/> at a specified position in the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  168. </summary>
  169. <param name="index">The offset into the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></param>
  170. <returns>The <see cref="T:System.Char"/> at a specified position.</returns>
  171. <exception cref="T:System.ArgumentOutOfRangeException">
  172. <paramref name="index"/> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/> or less than zero.
  173. </exception>
  174. </member>
  175. <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsSpan">
  176. <summary>
  177. Gets a <see cref="T:System.ReadOnlySpan`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  178. </summary>
  179. <returns>The <see cref="T:System.ReadOnlySpan`1"/> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns>
  180. </member>
  181. <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsSpan(System.Int32)">
  182. <summary>
  183. Gets a <see cref="T:System.ReadOnlySpan`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that starts
  184. at the position specified by <paramref name="start"/>, and has the remaining length.
  185. </summary>
  186. <param name="start">The zero-based starting character position in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  187. <returns>A <see cref="T:System.ReadOnlySpan`1"/> with the remaining chars that begins at <paramref name="start"/> in
  188. this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns>
  189. <exception cref="T:System.ArgumentOutOfRangeException">
  190. <paramref name="start"/> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/> or less than zero.
  191. </exception>
  192. </member>
  193. <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsSpan(System.Int32,System.Int32)">
  194. <summary>
  195. Gets a <see cref="T:System.ReadOnlySpan`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that starts
  196. at the position specified by <paramref name="start"/>, and has the specified <paramref name="length"/>.
  197. </summary>
  198. <param name="start">The zero-based starting character position in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  199. <param name="length">The number of characters in the span.</param>
  200. <returns>A <see cref="T:System.ReadOnlySpan`1"/> with length <paramref name="length"/> that begins at
  201. <paramref name="start"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns>
  202. <exception cref="T:System.ArgumentOutOfRangeException">
  203. <paramref name="start"/> or <paramref name="length"/> is less than zero, or <paramref name="start"/> + <paramref name="length"/> is
  204. greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/>.
  205. </exception>
  206. </member>
  207. <member name="M:Microsoft.Extensions.Primitives.StringSegment.AsMemory">
  208. <summary>
  209. Gets a <see cref="T:System.ReadOnlyMemory`1"/> from the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  210. </summary>
  211. <returns>The <see cref="T:System.ReadOnlyMemory`1"/> from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns>
  212. </member>
  213. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Compare(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)">
  214. <summary>
  215. Compares substrings of two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> objects using the specified rules,
  216. and returns an integer that indicates their relative position in the sort order.
  217. </summary>
  218. <param name="a">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare.</param>
  219. <param name="b">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare.</param>
  220. <param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param>
  221. <returns>
  222. A 32-bit signed integer indicating the lexical relationship between the two comparands.
  223. The value is negative if <paramref name="a"/> is less than <paramref name="b"/>, 0 if the two comparands are equal,
  224. and positive if <paramref name="a"/> is greater than <paramref name="b"/>.
  225. </returns>
  226. </member>
  227. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.Object)">
  228. <summary>
  229. Indicates whether the current object is equal to another object of the same type.
  230. </summary>
  231. <param name="obj">An object to compare with this object.</param>
  232. <returns><see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</returns>
  233. </member>
  234. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment)">
  235. <summary>
  236. Indicates whether the current object is equal to another object of the same type.
  237. </summary>
  238. <param name="other">An object to compare with this object.</param>
  239. <returns><see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</returns>
  240. </member>
  241. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)">
  242. <summary>
  243. Indicates whether the current object is equal to another object of the same type.
  244. </summary>
  245. <param name="other">An object to compare with this object.</param>
  246. <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
  247. <returns><see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</returns>
  248. </member>
  249. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment,System.StringComparison)">
  250. <summary>
  251. Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> objects have the same value. A parameter specifies the culture, case, and
  252. sort rules used in the comparison.
  253. </summary>
  254. <param name="a">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare.</param>
  255. <param name="b">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare.</param>
  256. <param name="comparisonType">One of the enumeration values that specifies the rules for the comparison.</param>
  257. <returns><see langword="true" /> if the objects are equal; otherwise, <see langword="false" />.</returns>
  258. </member>
  259. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String)">
  260. <summary>
  261. Checks if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  262. </summary>
  263. <param name="text">The <see cref="T:System.String"/> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  264. <returns><see langword="true" /> if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <see langword="false" />.</returns>
  265. </member>
  266. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Equals(System.String,System.StringComparison)">
  267. <summary>
  268. Checks if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  269. </summary>
  270. <param name="text">The <see cref="T:System.String"/> to compare with the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  271. <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
  272. <returns><see langword="true" /> if the specified <see cref="T:System.String"/> is equal to the current <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <see langword="false" />.</returns>
  273. </member>
  274. <member name="M:Microsoft.Extensions.Primitives.StringSegment.GetHashCode">
  275. <summary>
  276. Returns a hash code for this instance.
  277. </summary>
  278. <returns>
  279. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
  280. </returns>
  281. </member>
  282. <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Equality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)">
  283. <summary>
  284. Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> have the same value.
  285. </summary>
  286. <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <see langword="null" />.</param>
  287. <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <see langword="null" />.</param>
  288. <returns><see langword="true" /> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <see langword="false" />.</returns>
  289. </member>
  290. <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Inequality(Microsoft.Extensions.Primitives.StringSegment,Microsoft.Extensions.Primitives.StringSegment)">
  291. <summary>
  292. Checks if two specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> have different values.
  293. </summary>
  294. <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <see langword="null" />.</param>
  295. <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to compare, or <see langword="null" />.</param>
  296. <returns><see langword="true" /> if the value of <paramref name="left"/> is different from the value of <paramref name="right"/>; otherwise, <see langword="false" />.</returns>
  297. </member>
  298. <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringSegment">
  299. <summary>
  300. Creates a new <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> from the given <see cref="T:System.String"/>.
  301. </summary>
  302. <param name="value">The <see cref="T:System.String"/> to convert to a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></param>
  303. </member>
  304. <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlySpan{System.Char}">
  305. <summary>
  306. Creates a see <see cref="T:System.ReadOnlySpan`1"/> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  307. </summary>
  308. <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to convert to a <see cref="T:System.ReadOnlySpan`1"/>.</param>
  309. </member>
  310. <member name="M:Microsoft.Extensions.Primitives.StringSegment.op_Implicit(Microsoft.Extensions.Primitives.StringSegment)~System.ReadOnlyMemory{System.Char}">
  311. <summary>
  312. Creates a see <see cref="T:System.ReadOnlyMemory`1"/> from the given <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  313. </summary>
  314. <param name="segment">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to convert to a <see cref="T:System.ReadOnlyMemory`1"/>.</param>
  315. </member>
  316. <member name="M:Microsoft.Extensions.Primitives.StringSegment.StartsWith(System.String,System.StringComparison)">
  317. <summary>
  318. Checks if the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> matches the specified <see cref="T:System.String"/> when compared using the specified <paramref name="comparisonType"/>.
  319. </summary>
  320. <param name="text">The <see cref="T:System.String"/>to compare.</param>
  321. <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
  322. <returns><see langword="true" /> if <paramref name="text"/> matches the beginning of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <see langword="false" />.</returns>
  323. <exception cref="T:System.ArgumentNullException">
  324. <paramref name="text"/> is <see langword="null" />.
  325. </exception>
  326. </member>
  327. <member name="M:Microsoft.Extensions.Primitives.StringSegment.EndsWith(System.String,System.StringComparison)">
  328. <summary>
  329. Checks if the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> matches the specified <see cref="T:System.String"/> when compared using the specified <paramref name="comparisonType"/>.
  330. </summary>
  331. <param name="text">The <see cref="T:System.String"/>to compare.</param>
  332. <param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
  333. <returns><see langword="true" /> if <paramref name="text"/> matches the end of this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>; otherwise, <see langword="false" />.</returns>
  334. <exception cref="T:System.ArgumentNullException">
  335. <paramref name="text"/> is <see langword="null" />.
  336. </exception>
  337. </member>
  338. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32)">
  339. <summary>
  340. Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  341. The substring starts at the position specified by <paramref name="offset"/> and has the remaining length.
  342. </summary>
  343. <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  344. <returns>A <see cref="T:System.String"/> that is equivalent to the substring of remaining length that begins at
  345. <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns>
  346. <exception cref="T:System.ArgumentOutOfRangeException">
  347. <paramref name="offset"/> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/> or less than zero.
  348. </exception>
  349. </member>
  350. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Substring(System.Int32,System.Int32)">
  351. <summary>
  352. Retrieves a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  353. The substring starts at the position specified by <paramref name="offset"/> and has the specified <paramref name="length"/>.
  354. </summary>
  355. <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  356. <param name="length">The number of characters in the substring.</param>
  357. <returns>A <see cref="T:System.String"/> that is equivalent to the substring of length <paramref name="length"/> that begins at
  358. <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns>
  359. <exception cref="T:System.ArgumentOutOfRangeException">
  360. <paramref name="offset"/> or <paramref name="length"/> is less than zero, or <paramref name="offset"/> + <paramref name="length"/> is
  361. greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/>.
  362. </exception>
  363. </member>
  364. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32)">
  365. <summary>
  366. Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  367. The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> starts at the position specified by <paramref name="offset"/>.
  368. </summary>
  369. <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  370. <returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that begins at <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>
  371. whose length is the remainder.</returns>
  372. <exception cref="T:System.ArgumentOutOfRangeException">
  373. <paramref name="offset"/> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/> or less than zero.
  374. </exception>
  375. </member>
  376. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Subsegment(System.Int32,System.Int32)">
  377. <summary>
  378. Retrieves a <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that represents a substring from this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  379. The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> starts at the position specified by <paramref name="offset"/> and has the specified <paramref name="length"/>.
  380. </summary>
  381. <param name="offset">The zero-based starting character position of a substring in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</param>
  382. <param name="length">The number of characters in the substring.</param>
  383. <returns>A <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> that is equivalent to the substring of length <paramref name="length"/> that begins at <paramref name="offset"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/></returns>
  384. <exception cref="T:System.ArgumentOutOfRangeException">
  385. <paramref name="offset"/> or <paramref name="length"/> is less than zero, or <paramref name="offset"/> + <paramref name="length"/> is
  386. greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/>.
  387. </exception>
  388. </member>
  389. <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32,System.Int32)">
  390. <summary>
  391. Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  392. The search starts at <paramref name="start"/> and examines a specified number of <paramref name="count"/> character positions.
  393. </summary>
  394. <param name="c">The Unicode character to seek.</param>
  395. <param name="start">The zero-based index position at which the search starts. </param>
  396. <param name="count">The number of characters to examine.</param>
  397. <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns>
  398. <exception cref="T:System.ArgumentOutOfRangeException">
  399. <paramref name="start"/> or <paramref name="count"/> is less than zero, or <paramref name="start"/> + <paramref name="count"/> is
  400. greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/>.
  401. </exception>
  402. </member>
  403. <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char,System.Int32)">
  404. <summary>
  405. Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  406. The search starts at <paramref name="start"/>.
  407. </summary>
  408. <param name="c">The Unicode character to seek.</param>
  409. <param name="start">The zero-based index position at which the search starts. </param>
  410. <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns>
  411. <exception cref="T:System.ArgumentOutOfRangeException">
  412. <paramref name="start"/> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/> or less than zero.
  413. </exception>
  414. </member>
  415. <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOf(System.Char)">
  416. <summary>
  417. Gets the zero-based index of the first occurrence of the character <paramref name="c"/> in this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.
  418. </summary>
  419. <param name="c">The Unicode character to seek.</param>
  420. <returns>The zero-based index position of <paramref name="c"/> from the beginning of the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> if that character is found, or -1 if it is not.</returns>
  421. </member>
  422. <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32,System.Int32)">
  423. <summary>
  424. Reports the zero-based index of the first occurrence in this instance of any character in a specified array
  425. of Unicode characters. The search starts at a specified character position and examines a specified number
  426. of character positions.
  427. </summary>
  428. <param name="anyOf">A Unicode character array containing one or more characters to seek.</param>
  429. <param name="startIndex">The search starting position.</param>
  430. <param name="count">The number of character positions to examine.</param>
  431. <returns>The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf"/>
  432. was found; -1 if no character in <paramref name="anyOf"/> was found.</returns>
  433. <exception cref="T:System.ArgumentNullException">
  434. <paramref name="anyOf"/> is <see langword="null" />.
  435. </exception>
  436. <exception cref="T:System.ArgumentOutOfRangeException">
  437. <paramref name="startIndex"/> or <paramref name="count"/> is less than zero, or <paramref name="startIndex"/> + <paramref name="count"/> is
  438. greater than <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/>.
  439. </exception>
  440. </member>
  441. <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[],System.Int32)">
  442. <summary>
  443. Reports the zero-based index of the first occurrence in this instance of any character in a specified array
  444. of Unicode characters. The search starts at a specified character position.
  445. </summary>
  446. <param name="anyOf">A Unicode character array containing one or more characters to seek.</param>
  447. <param name="startIndex">The search starting position.</param>
  448. <returns>The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf"/>
  449. was found; -1 if no character in <paramref name="anyOf"/> was found.</returns>
  450. <exception cref="T:System.ArgumentOutOfRangeException">
  451. <paramref name="startIndex"/> is greater than or equal to <see cref="P:Microsoft.Extensions.Primitives.StringSegment.Length"/> or less than zero.
  452. </exception>
  453. </member>
  454. <member name="M:Microsoft.Extensions.Primitives.StringSegment.IndexOfAny(System.Char[])">
  455. <summary>
  456. Reports the zero-based index of the first occurrence in this instance of any character in a specified array
  457. of Unicode characters.
  458. </summary>
  459. <param name="anyOf">A Unicode character array containing one or more characters to seek.</param>
  460. <returns>The zero-based index position of the first occurrence in this instance where any character in <paramref name="anyOf"/>
  461. was found; -1 if no character in <paramref name="anyOf"/> was found.</returns>
  462. </member>
  463. <member name="M:Microsoft.Extensions.Primitives.StringSegment.LastIndexOf(System.Char)">
  464. <summary>
  465. Reports the zero-based index position of the last occurrence of a specified Unicode character within this instance.
  466. </summary>
  467. <param name="value">The Unicode character to seek.</param>
  468. <returns>The zero-based index position of value if that character is found, or -1 if it is not.</returns>
  469. </member>
  470. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Trim">
  471. <summary>
  472. Removes all leading and trailing whitespaces.
  473. </summary>
  474. <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns>
  475. </member>
  476. <member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimStart">
  477. <summary>
  478. Removes all leading whitespaces.
  479. </summary>
  480. <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns>
  481. </member>
  482. <member name="M:Microsoft.Extensions.Primitives.StringSegment.TrimEnd">
  483. <summary>
  484. Removes all trailing whitespaces.
  485. </summary>
  486. <returns>The trimmed <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>.</returns>
  487. </member>
  488. <member name="M:Microsoft.Extensions.Primitives.StringSegment.Split(System.Char[])">
  489. <summary>
  490. Splits a string into <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>s that are based on the characters in an array.
  491. </summary>
  492. <param name="chars">A character array that delimits the substrings in this string, an empty array that
  493. contains no delimiters, or null.</param>
  494. <returns>An <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/> whose elements contain the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>s from this instance
  495. that are delimited by one or more characters in <paramref name="chars"/>.</returns>
  496. </member>
  497. <member name="M:Microsoft.Extensions.Primitives.StringSegment.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringSegment)">
  498. <summary>
  499. Indicates whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> is null or an Empty string.
  500. </summary>
  501. <param name="value">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to test.</param>
  502. <returns></returns>
  503. </member>
  504. <member name="M:Microsoft.Extensions.Primitives.StringSegment.ToString">
  505. <summary>
  506. Returns the <see cref="T:System.String"/> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> or <see cref="F:System.String.Empty" /> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> does not contain a value.
  507. </summary>
  508. <returns>The <see cref="T:System.String"/> represented by this <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> or <see cref="F:System.String.Empty" /> if the <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> does not contain a value.</returns>
  509. </member>
  510. <member name="T:Microsoft.Extensions.Primitives.StringTokenizer">
  511. <summary>
  512. Tokenizes a <see cref="T:System.String"/> into <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/>s.
  513. </summary>
  514. </member>
  515. <member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(System.String,System.Char[])">
  516. <summary>
  517. Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/>.
  518. </summary>
  519. <param name="value">The <see cref="T:System.String"/> to tokenize.</param>
  520. <param name="separators">The characters to tokenize by.</param>
  521. </member>
  522. <member name="M:Microsoft.Extensions.Primitives.StringTokenizer.#ctor(Microsoft.Extensions.Primitives.StringSegment,System.Char[])">
  523. <summary>
  524. Initializes a new instance of <see cref="T:Microsoft.Extensions.Primitives.StringTokenizer"/>.
  525. </summary>
  526. <param name="value">The <see cref="T:Microsoft.Extensions.Primitives.StringSegment"/> to tokenize.</param>
  527. <param name="separators">The characters to tokenize by.</param>
  528. </member>
  529. <member name="T:Microsoft.Extensions.Primitives.StringValues">
  530. <summary>
  531. Represents zero/null, one, or many strings in an efficient way.
  532. </summary>
  533. </member>
  534. <member name="F:Microsoft.Extensions.Primitives.StringValues.Empty">
  535. <summary>
  536. A readonly instance of the <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> struct whose value is an empty string array.
  537. </summary>
  538. <remarks>
  539. In application code, this field is most commonly used to safely represent a <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> that has null string values.
  540. </remarks>
  541. </member>
  542. <member name="M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String)">
  543. <summary>
  544. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> structure using the specified string.
  545. </summary>
  546. <param name="value">A string value or <c>null</c>.</param>
  547. </member>
  548. <member name="M:Microsoft.Extensions.Primitives.StringValues.#ctor(System.String[])">
  549. <summary>
  550. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> structure using the specified array of strings.
  551. </summary>
  552. <param name="values">A string array.</param>
  553. </member>
  554. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String)~Microsoft.Extensions.Primitives.StringValues">
  555. <summary>
  556. Defines an implicit conversion of a given string to a <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>.
  557. </summary>
  558. <param name="value">A string to implicitly convert.</param>
  559. </member>
  560. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(System.String[])~Microsoft.Extensions.Primitives.StringValues">
  561. <summary>
  562. Defines an implicit conversion of a given string array to a <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>.
  563. </summary>
  564. <param name="values">A string array to implicitly convert.</param>
  565. </member>
  566. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String">
  567. <summary>
  568. Defines an implicit conversion of a given <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to a string, with multiple values joined as a comma separated string.
  569. </summary>
  570. <remarks>
  571. Returns <c>null</c> where <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> has been initialized from an empty string array or is <see cref="F:Microsoft.Extensions.Primitives.StringValues.Empty"/>.
  572. </remarks>
  573. <param name="values">A <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to implicitly convert.</param>
  574. </member>
  575. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Implicit(Microsoft.Extensions.Primitives.StringValues)~System.String[]">
  576. <summary>
  577. Defines an implicit conversion of a given <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to a string array.
  578. </summary>
  579. <param name="value">A <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to implicitly convert.</param>
  580. </member>
  581. <member name="P:Microsoft.Extensions.Primitives.StringValues.Count">
  582. <summary>
  583. Gets the number of <see cref="T:System.String"/> elements contained in this <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.
  584. </summary>
  585. </member>
  586. <member name="P:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList{System#String}#Item(System.Int32)">
  587. <summary>
  588. Gets the <see cref="T:System.String"/> at index.
  589. </summary>
  590. <value>The string at the specified index.</value>
  591. <param name="index">The zero-based index of the element to get.</param>
  592. <exception cref="T:System.NotSupportedException">Set operations are not supported on readonly <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>.</exception>
  593. </member>
  594. <member name="P:Microsoft.Extensions.Primitives.StringValues.Item(System.Int32)">
  595. <summary>
  596. Gets the <see cref="T:System.String"/> at index.
  597. </summary>
  598. <value>The string at the specified index.</value>
  599. <param name="index">The zero-based index of the element to get.</param>
  600. </member>
  601. <member name="M:Microsoft.Extensions.Primitives.StringValues.ToString">
  602. <summary>
  603. Converts the value of the current <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> object to its equivalent string representation, with multiple values joined as a comma separated string.
  604. </summary>
  605. <returns>A string representation of the value of the current <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> object.</returns>
  606. </member>
  607. <member name="M:Microsoft.Extensions.Primitives.StringValues.ToArray">
  608. <summary>
  609. Creates a string array from the current <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> object.
  610. </summary>
  611. <returns>A string array represented by this instance.</returns>
  612. <remarks>
  613. <para>If the <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> contains a single string internally, it is copied to a new array.</para>
  614. <para>If the <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> contains an array internally it returns that array instance.</para>
  615. </remarks>
  616. </member>
  617. <member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IList{System#String}#IndexOf(System.String)">
  618. <summary>
  619. Returns the zero-based index of the first occurrence of an item in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.
  620. </summary>
  621. <param name="item">The string to locate in the <see cref="T:Microsoft.Extensions.Primitives.StringValues"></see>.</param>
  622. <returns>the zero-based index of the first occurrence of <paramref name="item" /> within the <see cref="T:Microsoft.Extensions.Primitives.StringValues"></see>, if found; otherwise, -1.</returns>
  623. </member>
  624. <member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#Contains(System.String)">
  625. <summary>Determines whether a string is in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
  626. <param name="item">The <see cref="T:System.String"/> to locate in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</param>
  627. <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />; otherwise, false.</returns>
  628. </member>
  629. <member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#ICollection{System#String}#CopyTo(System.String[],System.Int32)">
  630. <summary>
  631. Copies the entire <see cref="T:Microsoft.Extensions.Primitives.StringValues" />to a string array, starting at the specified index of the target array.
  632. </summary>
  633. <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
  634. <param name="arrayIndex">The zero-based index in the destination array at which copying begins.</param>
  635. <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
  636. <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than 0.</exception>
  637. <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:Microsoft.Extensions.Primitives.StringValues"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
  638. </member>
  639. <member name="M:Microsoft.Extensions.Primitives.StringValues.GetEnumerator">
  640. <summary>Retrieves an object that can iterate through the individual strings in this <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</summary>
  641. <returns>An enumerator that can be used to iterate through the <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.</returns>
  642. </member>
  643. <member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#Generic#IEnumerable{System#String}#GetEnumerator">
  644. <inheritdoc cref="M:Microsoft.Extensions.Primitives.StringValues.GetEnumerator" />
  645. </member>
  646. <member name="M:Microsoft.Extensions.Primitives.StringValues.System#Collections#IEnumerable#GetEnumerator">
  647. <inheritdoc cref="M:Microsoft.Extensions.Primitives.StringValues.GetEnumerator" />
  648. </member>
  649. <member name="M:Microsoft.Extensions.Primitives.StringValues.IsNullOrEmpty(Microsoft.Extensions.Primitives.StringValues)">
  650. <summary>
  651. Indicates whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> contains no string values.
  652. </summary>
  653. <param name="value">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to test.</param>
  654. <returns>true if <paramref name="value">value</paramref> contains a single null or empty string or an empty array; otherwise, false.</returns>
  655. </member>
  656. <member name="M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
  657. <summary>
  658. Concatenates two specified instances of <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>.
  659. </summary>
  660. <param name="values1">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to concatenate.</param>
  661. <param name="values2">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to concatenate.</param>
  662. <returns>The concatenation of <paramref name="values1"/> and <paramref name="values2"/>.</returns>
  663. </member>
  664. <member name="M:Microsoft.Extensions.Primitives.StringValues.Concat(Microsoft.Extensions.Primitives.StringValues@,System.String)">
  665. <summary>
  666. Concatenates specified instance of <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> with specified <see cref="T:System.String"/>.
  667. </summary>
  668. <param name="values">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to concatenate.</param>
  669. <param name="value">The <see cref="T:System.String" /> to concatenate.</param>
  670. <returns>The concatenation of <paramref name="values"/> and <paramref name="value"/>.</returns>
  671. </member>
  672. <member name="M:Microsoft.Extensions.Primitives.StringValues.Concat(System.String,Microsoft.Extensions.Primitives.StringValues@)">
  673. <summary>
  674. Concatenates specified instance of <see cref="T:System.String"/> with specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>.
  675. </summary>
  676. <param name="value">The <see cref="T:System.String" /> to concatenate.</param>
  677. <param name="values">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to concatenate.</param>
  678. <returns>The concatenation of <paramref name="values"/> and <paramref name="values"/>.</returns>
  679. </member>
  680. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
  681. <summary>
  682. Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> objects have the same values in the same order.
  683. </summary>
  684. <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  685. <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  686. <returns><c>true</c> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  687. </member>
  688. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
  689. <summary>
  690. Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> have the same values.
  691. </summary>
  692. <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  693. <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  694. <returns><c>true</c> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  695. </member>
  696. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,Microsoft.Extensions.Primitives.StringValues)">
  697. <summary>
  698. Determines whether two specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> have different values.
  699. </summary>
  700. <param name="left">The first <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  701. <param name="right">The second <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  702. <returns><c>true</c> if the value of <paramref name="left"/> is different to the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  703. </member>
  704. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues)">
  705. <summary>
  706. Determines whether this instance and another specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> object have the same values.
  707. </summary>
  708. <param name="other">The string to compare to this instance.</param>
  709. <returns><c>true</c> if the value of <paramref name="other"/> is the same as the value of this instance; otherwise, <c>false</c>.</returns>
  710. </member>
  711. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String,Microsoft.Extensions.Primitives.StringValues)">
  712. <summary>
  713. Determines whether the specified <see cref="T:System.String"/> and <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> objects have the same values.
  714. </summary>
  715. <param name="left">The <see cref="T:System.String"/> to compare.</param>
  716. <param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  717. <returns><c>true</c> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <c>false</c>. If <paramref name="left"/> is <c>null</c>, the method returns <c>false</c>.</returns>
  718. </member>
  719. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String)">
  720. <summary>
  721. Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> and <see cref="T:System.String"/> objects have the same values.
  722. </summary>
  723. <param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  724. <param name="right">The <see cref="T:System.String"/> to compare.</param>
  725. <returns><c>true</c> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <c>false</c>. If <paramref name="right"/> is <c>null</c>, the method returns <c>false</c>.</returns>
  726. </member>
  727. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String)">
  728. <summary>
  729. Determines whether this instance and a specified <see cref="T:System.String"/>, have the same value.
  730. </summary>
  731. <param name="other">The <see cref="T:System.String"/> to compare to this instance.</param>
  732. <returns><c>true</c> if the value of <paramref name="other"/> is the same as this instance; otherwise, <c>false</c>. If <paramref name="other"/> is <c>null</c>, returns <c>false</c>.</returns>
  733. </member>
  734. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[],Microsoft.Extensions.Primitives.StringValues)">
  735. <summary>
  736. Determines whether the specified string array and <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> objects have the same values.
  737. </summary>
  738. <param name="left">The string array to compare.</param>
  739. <param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  740. <returns><c>true</c> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  741. </member>
  742. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String[])">
  743. <summary>
  744. Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> and string array objects have the same values.
  745. </summary>
  746. <param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  747. <param name="right">The string array to compare.</param>
  748. <returns><c>true</c> if the value of <paramref name="left"/> is the same as the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  749. </member>
  750. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[])">
  751. <summary>
  752. Determines whether this instance and a specified string array have the same values.
  753. </summary>
  754. <param name="other">The string array to compare to this instance.</param>
  755. <returns><c>true</c> if the value of <paramref name="other"/> is the same as this instance; otherwise, <c>false</c>.</returns>
  756. </member>
  757. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String)">
  758. <inheritdoc cref="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String)" />
  759. </member>
  760. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String)">
  761. <summary>
  762. Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> and <see cref="T:System.String"/> objects have different values.
  763. </summary>
  764. <param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  765. <param name="right">The <see cref="T:System.String"/> to compare.</param>
  766. <returns><c>true</c> if the value of <paramref name="left"/> is different to the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  767. </member>
  768. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String,Microsoft.Extensions.Primitives.StringValues)">
  769. <inheritdoc cref="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String,Microsoft.Extensions.Primitives.StringValues)" />
  770. </member>
  771. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String,Microsoft.Extensions.Primitives.StringValues)">
  772. <summary>
  773. Determines whether the specified <see cref="T:System.String"/> and <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> objects have different values.
  774. </summary>
  775. <param name="left">The <see cref="T:System.String"/> to compare.</param>
  776. <param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  777. <returns><c>true</c> if the value of <paramref name="left"/> is different to the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  778. </member>
  779. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.String[])">
  780. <inheritdoc cref="M:Microsoft.Extensions.Primitives.StringValues.Equals(Microsoft.Extensions.Primitives.StringValues,System.String[])" />
  781. </member>
  782. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.String[])">
  783. <summary>
  784. Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> and string array have different values.
  785. </summary>
  786. <param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  787. <param name="right">The string array to compare.</param>
  788. <returns><c>true</c> if the value of <paramref name="left"/> is different to the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  789. </member>
  790. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.String[],Microsoft.Extensions.Primitives.StringValues)">
  791. <inheritdoc cref="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.String[],Microsoft.Extensions.Primitives.StringValues)" />
  792. </member>
  793. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.String[],Microsoft.Extensions.Primitives.StringValues)">
  794. <summary>
  795. Determines whether the specified string array and <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> have different values.
  796. </summary>
  797. <param name="left">The string array to compare.</param>
  798. <param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  799. <returns><c>true</c> if the value of <paramref name="left"/> is different to the value of <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  800. </member>
  801. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(Microsoft.Extensions.Primitives.StringValues,System.Object)">
  802. <summary>
  803. Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> and <see cref="T:System.Object"/>, which must be a
  804. <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>, <see cref="T:System.String"/>, or array of <see cref="T:System.String"/>, have the same value.
  805. </summary>
  806. <param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  807. <param name="right">The <see cref="T:System.Object"/> to compare.</param>
  808. <returns><c>true</c> if the <paramref name="left"/> object is equal to the <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  809. </member>
  810. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(Microsoft.Extensions.Primitives.StringValues,System.Object)">
  811. <summary>
  812. Determines whether the specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> and <see cref="T:System.Object"/>, which must be a
  813. <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>, <see cref="T:System.String"/>, or array of <see cref="T:System.String"/>, have different values.
  814. </summary>
  815. <param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  816. <param name="right">The <see cref="T:System.Object"/> to compare.</param>
  817. <returns><c>true</c> if the <paramref name="left"/> object is equal to the <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  818. </member>
  819. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Equality(System.Object,Microsoft.Extensions.Primitives.StringValues)">
  820. <summary>
  821. Determines whether the specified <see cref="T:System.Object"/>, which must be a
  822. <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>, <see cref="T:System.String"/>, or array of <see cref="T:System.String"/>, and specified <see cref="T:Microsoft.Extensions.Primitives.StringValues"/>, have the same value.
  823. </summary>
  824. <param name="left">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  825. <param name="right">The <see cref="T:System.Object"/> to compare.</param>
  826. <returns><c>true</c> if the <paramref name="left"/> object is equal to the <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  827. </member>
  828. <member name="M:Microsoft.Extensions.Primitives.StringValues.op_Inequality(System.Object,Microsoft.Extensions.Primitives.StringValues)">
  829. <summary>
  830. Determines whether the specified <see cref="T:System.Object"/> and <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> object have the same values.
  831. </summary>
  832. <param name="left">The <see cref="T:System.Object"/> to compare.</param>
  833. <param name="right">The <see cref="T:Microsoft.Extensions.Primitives.StringValues"/> to compare.</param>
  834. <returns><c>true</c> if the <paramref name="left"/> object is equal to the <paramref name="right"/>; otherwise, <c>false</c>.</returns>
  835. </member>
  836. <member name="M:Microsoft.Extensions.Primitives.StringValues.Equals(System.Object)">
  837. <summary>
  838. Determines whether this instance and a specified object have the same value.
  839. </summary>
  840. <param name="obj">An object to compare with this object.</param>
  841. <returns><c>true</c> if the current object is equal to <paramref name="obj"/>; otherwise, <c>false</c>.</returns>
  842. </member>
  843. <member name="M:Microsoft.Extensions.Primitives.StringValues.GetHashCode">
  844. <inheritdoc />
  845. </member>
  846. <member name="T:Microsoft.Extensions.Primitives.StringValues.Enumerator">
  847. <summary>
  848. Enumerates the string values of a <see cref="T:Microsoft.Extensions.Primitives.StringValues" />.
  849. </summary>
  850. </member>
  851. <member name="M:System.Text.ValueStringBuilder.GetPinnableReference">
  852. <summary>
  853. Get a pinnable reference to the builder.
  854. Does not ensure there is a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/>
  855. This overload is pattern matched in the C# 7.3+ compiler so you can omit
  856. the explicit method call, and write eg "fixed (char* c = builder)"
  857. </summary>
  858. </member>
  859. <member name="M:System.Text.ValueStringBuilder.GetPinnableReference(System.Boolean)">
  860. <summary>
  861. Get a pinnable reference to the builder.
  862. </summary>
  863. <param name="terminate">Ensures that the builder has a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/></param>
  864. </member>
  865. <member name="P:System.Text.ValueStringBuilder.RawChars">
  866. <summary>Returns the underlying storage of the builder.</summary>
  867. </member>
  868. <member name="M:System.Text.ValueStringBuilder.AsSpan(System.Boolean)">
  869. <summary>
  870. Returns a span around the contents of the builder.
  871. </summary>
  872. <param name="terminate">Ensures that the builder has a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/></param>
  873. </member>
  874. <member name="M:System.Text.ValueStringBuilder.Grow(System.Int32)">
  875. <summary>
  876. Resize the internal buffer either by doubling current buffer size or
  877. by adding <paramref name="additionalCapacityBeyondPos"/> to
  878. <see cref="F:System.Text.ValueStringBuilder._pos"/> whichever is greater.
  879. </summary>
  880. <param name="additionalCapacityBeyondPos">
  881. Number of chars requested beyond current position.
  882. </param>
  883. </member>
  884. <member name="P:System.SR.Argument_InvalidOffsetLength">
  885. <summary>Offset and length are out of bounds for the string or length is greater than the number of characters from index to the end of the string.</summary>
  886. </member>
  887. <member name="P:System.SR.Argument_InvalidOffsetLengthStringSegment">
  888. <summary>Offset and length are out of bounds for this StringSegment or length is greater than the number of characters to the end of this StringSegment.</summary>
  889. </member>
  890. <member name="P:System.SR.Capacity_CannotChangeAfterWriteStarted">
  891. <summary>Cannot change capacity after write started.</summary>
  892. </member>
  893. <member name="P:System.SR.Capacity_NotEnough">
  894. <summary>Not enough capacity to write '{0}' characters, only '{1}' left.</summary>
  895. </member>
  896. <member name="P:System.SR.Capacity_NotUsedEntirely">
  897. <summary>Entire reserved capacity was not used. Capacity: '{0}', written '{1}'.</summary>
  898. </member>
  899. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  900. <summary>
  901. Attribute used to indicate a source generator should create a function for marshalling
  902. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  903. </summary>
  904. <remarks>
  905. This attribute is meaningless if the source generator associated with it is not enabled.
  906. The current built-in source generator only supports C# and only supplies an implementation when
  907. applied to static, partial, non-generic methods.
  908. </remarks>
  909. </member>
  910. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  911. <summary>
  912. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  913. </summary>
  914. <param name="libraryName">Name of the library containing the import.</param>
  915. </member>
  916. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  917. <summary>
  918. Gets the name of the library containing the import.
  919. </summary>
  920. </member>
  921. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  922. <summary>
  923. Gets or sets the name of the entry point to be called.
  924. </summary>
  925. </member>
  926. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  927. <summary>
  928. Gets or sets how to marshal string arguments to the method.
  929. </summary>
  930. <remarks>
  931. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  932. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  933. </remarks>
  934. </member>
  935. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  936. <summary>
  937. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  938. </summary>
  939. <remarks>
  940. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  941. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  942. </remarks>
  943. </member>
  944. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  945. <summary>
  946. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  947. on other platforms) before returning from the attributed method.
  948. </summary>
  949. </member>
  950. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  951. <summary>
  952. Specifies how strings should be marshalled for generated p/invokes
  953. </summary>
  954. </member>
  955. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  956. <summary>
  957. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  958. </summary>
  959. </member>
  960. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  961. <summary>
  962. Use the platform-provided UTF-8 marshaller.
  963. </summary>
  964. </member>
  965. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  966. <summary>
  967. Use the platform-provided UTF-16 marshaller.
  968. </summary>
  969. </member>
  970. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  971. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  972. </member>
  973. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  974. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  975. </member>
  976. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  977. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  978. </member>
  979. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  980. <summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>
  981. </member>
  982. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  983. <summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue"/>, the parameter may be null even if the corresponding type disallows it.</summary>
  984. </member>
  985. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  986. <summary>Initializes the attribute with the specified return value condition.</summary>
  987. <param name="returnValue">
  988. The return value condition. If the method returns this value, the associated parameter may be null.
  989. </param>
  990. </member>
  991. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  992. <summary>Gets the return value condition.</summary>
  993. </member>
  994. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  995. <summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue"/>, the parameter will not be null even if the corresponding type allows it.</summary>
  996. </member>
  997. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  998. <summary>Initializes the attribute with the specified return value condition.</summary>
  999. <param name="returnValue">
  1000. The return value condition. If the method returns this value, the associated parameter will not be null.
  1001. </param>
  1002. </member>
  1003. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  1004. <summary>Gets the return value condition.</summary>
  1005. </member>
  1006. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  1007. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  1008. </member>
  1009. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  1010. <summary>Initializes the attribute with the associated parameter name.</summary>
  1011. <param name="parameterName">
  1012. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  1013. </param>
  1014. </member>
  1015. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  1016. <summary>Gets the associated parameter name.</summary>
  1017. </member>
  1018. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  1019. <summary>Applied to a method that will never return under any circumstance.</summary>
  1020. </member>
  1021. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  1022. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  1023. </member>
  1024. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  1025. <summary>Initializes the attribute with the specified parameter value.</summary>
  1026. <param name="parameterValue">
  1027. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  1028. the associated parameter matches this value.
  1029. </param>
  1030. </member>
  1031. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  1032. <summary>Gets the condition parameter value.</summary>
  1033. </member>
  1034. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  1035. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  1036. </member>
  1037. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  1038. <summary>Initializes the attribute with a field or property member.</summary>
  1039. <param name="member">
  1040. The field or property member that is promised to be not-null.
  1041. </param>
  1042. </member>
  1043. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  1044. <summary>Initializes the attribute with the list of field and property members.</summary>
  1045. <param name="members">
  1046. The list of field and property members that are promised to be not-null.
  1047. </param>
  1048. </member>
  1049. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  1050. <summary>Gets field or property member names.</summary>
  1051. </member>
  1052. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  1053. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>
  1054. </member>
  1055. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  1056. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  1057. <param name="returnValue">
  1058. The return value condition. If the method returns this value, the associated parameter will not be null.
  1059. </param>
  1060. <param name="member">
  1061. The field or property member that is promised to be not-null.
  1062. </param>
  1063. </member>
  1064. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  1065. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  1066. <param name="returnValue">
  1067. The return value condition. If the method returns this value, the associated parameter will not be null.
  1068. </param>
  1069. <param name="members">
  1070. The list of field and property members that are promised to be not-null.
  1071. </param>
  1072. </member>
  1073. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  1074. <summary>Gets the return value condition.</summary>
  1075. </member>
  1076. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  1077. <summary>Gets field or property member names.</summary>
  1078. </member>
  1079. </members>
  1080. </doc>