暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PdfSharp.System.xml 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>PdfSharp.System</name>
  5. </assembly>
  6. <members>
  7. <member name="T:PdfSharp.Diagnostics.NRT">
  8. <summary>
  9. Helper class for code migration to nullable reference types.
  10. </summary>
  11. </member>
  12. <member name="M:PdfSharp.Diagnostics.NRT.ThrowOnNull(System.String)">
  13. <summary>
  14. Throws an InvalidOperationException because an expression which must not be null is null.
  15. </summary>
  16. <param name="message">The message.</param>
  17. <exception cref="T:System.InvalidOperationException"></exception>
  18. </member>
  19. <member name="M:PdfSharp.Diagnostics.NRT.ThrowOnNull``1(System.String)">
  20. <summary>
  21. Throws InvalidOperationException. Use this function during the transition from older C# code
  22. to new code that uses nullable reference types.
  23. </summary>
  24. <typeparam name="TResult">The type this function must return to be compiled correctly.</typeparam>
  25. <param name="message">An optional message used for the exception.</param>
  26. <returns>Nothing, always throws.</returns>
  27. <exception cref="T:System.InvalidOperationException"></exception>
  28. </member>
  29. <member name="M:PdfSharp.Diagnostics.NRT.ThrowOnNull``2(System.String)">
  30. <summary>
  31. Throws InvalidOperationException. Use this function during the transition from older C# code
  32. to new code that uses nullable reference types.
  33. </summary>
  34. <typeparam name="TResult">The type this function must return to be compiled correctly.</typeparam>
  35. <typeparam name="TType">The type of the object that is null.</typeparam>
  36. <param name="message">An optional message used for the exception.</param>
  37. <returns>Nothing, always throws.</returns>
  38. <exception cref="T:System.InvalidOperationException"></exception>
  39. </member>
  40. <member name="T:PdfSharp.Internal.TH">
  41. <summary>
  42. Experimental throw helper.
  43. </summary>
  44. </member>
  45. <member name="T:PdfSharp.Internal.UrlLiterals">
  46. <summary>
  47. URLs used in PDFsharp are maintained only here.
  48. </summary>
  49. </member>
  50. <member name="F:PdfSharp.Internal.UrlLiterals.LinkToAssetsDoc">
  51. <summary>
  52. URL for missing assets error message.
  53. "https://docs.pdfsharp.net/link/download-assets.html"
  54. </summary>
  55. </member>
  56. <member name="F:PdfSharp.Internal.UrlLiterals.LinkToFontResolving">
  57. <summary>
  58. URL for missing font resolver.
  59. "https://docs.pdfsharp.net/link/font-resolving.html"
  60. </summary>
  61. </member>
  62. <member name="T:PdfSharp.Logging.LogCategory">
  63. <summary>
  64. Defines the logging categories of PDFsharp.
  65. </summary>
  66. </member>
  67. <member name="F:PdfSharp.Logging.LogCategory.PdfSharp">
  68. <summary>
  69. Default category for standard logger.
  70. </summary>
  71. </member>
  72. <member name="T:PdfSharp.Logging.LogHost">
  73. <summary>
  74. Provides a single global logger factory used for logging in PDFsharp.
  75. </summary>
  76. </member>
  77. <member name="P:PdfSharp.Logging.LogHost.Factory">
  78. <summary>
  79. Gets or sets the current global logger factory singleton for PDFsharp.
  80. Every logger used in PDFsharp code is created by this factory.
  81. You can change the logger factory at any one time you want.
  82. If no factory is provided the NullLoggerFactory is used as the default.
  83. </summary>
  84. </member>
  85. <member name="P:PdfSharp.Logging.LogHost.Logger">
  86. <summary>
  87. Gets the global PDFsharp default logger.
  88. </summary>
  89. </member>
  90. <member name="M:PdfSharp.Logging.LogHost.CreateLogger(System.String)">
  91. <summary>
  92. Creates a logger with a given category name.
  93. </summary>
  94. </member>
  95. <member name="M:PdfSharp.Logging.LogHost.CreateLogger``1">
  96. <summary>
  97. Creates a logger with the full name of the given type as category name.
  98. </summary>
  99. </member>
  100. <member name="M:PdfSharp.Logging.LogHost.ResetLogging">
  101. <summary>
  102. Resets the logging host to the state it has immediately after loading the PDFsharp library.
  103. </summary>
  104. <remarks>
  105. This function is only useful in unit test scenarios and not intended to be called from application code.
  106. </remarks>
  107. </member>
  108. <member name="T:System.Runtime.CompilerServices.IsExternalInit">
  109. <summary>
  110. Required to compile init-only setters in .NET Standard and .NET Framework 4.71.
  111. </summary>
  112. </member>
  113. <member name="M:System.Runtime.CompilerServices.RuntimeHelpers.GetSubArray``1(``0[],System.Range)">
  114. <summary>
  115. Slices the specified array using the specified range.
  116. </summary>
  117. </member>
  118. <member name="T:System.Index">
  119. <summary>Represent a type can be used to index a collection either from the start or the end.</summary>
  120. <remarks>
  121. Index is used by the C# compiler to support the new index syntax
  122. <code>
  123. int[] someArray = new int[5] { 1, 2, 3, 4, 5 } ;
  124. int lastElement = someArray[^1]; // lastElement = 5
  125. </code>
  126. </remarks>
  127. </member>
  128. <member name="M:System.Index.#ctor(System.Int32,System.Boolean)">
  129. <summary>Construct an Index using a value and indicating if the index is from the start or from the end.</summary>
  130. <param name="value">The index value. it has to be zero or positive number.</param>
  131. <param name="fromEnd">Indicating if the index is from the start or from the end.</param>
  132. <remarks>
  133. If the Index constructed from the end, index value 1 means pointing at the last element and index value 0 means pointing at beyond last element.
  134. </remarks>
  135. </member>
  136. <member name="P:System.Index.Start">
  137. <summary>Create an Index pointing at first element.</summary>
  138. </member>
  139. <member name="P:System.Index.End">
  140. <summary>Create an Index pointing at beyond last element.</summary>
  141. </member>
  142. <member name="M:System.Index.FromStart(System.Int32)">
  143. <summary>Create an Index from the start at the position indicated by the value.</summary>
  144. <param name="value">The index value from the start.</param>
  145. </member>
  146. <member name="M:System.Index.FromEnd(System.Int32)">
  147. <summary>Create an Index from the end at the position indicated by the value.</summary>
  148. <param name="value">The index value from the end.</param>
  149. </member>
  150. <member name="P:System.Index.Value">
  151. <summary>Returns the index value.</summary>
  152. </member>
  153. <member name="P:System.Index.IsFromEnd">
  154. <summary>Indicates whether the index is from the start or the end.</summary>
  155. </member>
  156. <member name="M:System.Index.GetOffset(System.Int32)">
  157. <summary>Calculate the offset from the start using the giving collection length.</summary>
  158. <param name="length">The length of the collection that the Index will be used with. length has to be a positive value</param>
  159. <remarks>
  160. For performance reason, we don’t validate the input length parameter and the returned offset value against negative values.
  161. we don’t validate either the returned offset is greater than the input length.
  162. It is expected Index will be used with collections which always have non-negative length/count. If the returned offset is negative and
  163. then used to index a collection will get out of range exception which will be same affect as the validation.
  164. </remarks>
  165. </member>
  166. <member name="M:System.Index.Equals(System.Object)">
  167. <summary>Indicates whether the current Index object is equal to another object of the same type.</summary>
  168. <param name="value">An object to compare with this object</param>
  169. </member>
  170. <member name="M:System.Index.Equals(System.Index)">
  171. <summary>Indicates whether the current Index object is equal to another Index object.</summary>
  172. <param name="other">An object to compare with this object</param>
  173. </member>
  174. <member name="M:System.Index.GetHashCode">
  175. <summary>Returns the hash code for this instance.</summary>
  176. </member>
  177. <member name="M:System.Index.op_Implicit(System.Int32)~System.Index">
  178. <summary>Converts integer number to an Index.</summary>
  179. </member>
  180. <member name="M:System.Index.ToString">
  181. <summary>Converts the value of the current Index object to its equivalent string representation.</summary>
  182. </member>
  183. <member name="T:System.Range">
  184. <summary>Represent a range has start and end indexes.</summary>
  185. <remarks>
  186. Range is used by the C# compiler to support the range syntax.
  187. <code>
  188. int[] someArray = new int[5] { 1, 2, 3, 4, 5 };
  189. int[] subArray1 = someArray[0..2]; // { 1, 2 }
  190. int[] subArray2 = someArray[1..^0]; // { 2, 3, 4, 5 }
  191. </code>
  192. </remarks>
  193. </member>
  194. <member name="P:System.Range.Start">
  195. <summary>Represent the inclusive start index of the Range.</summary>
  196. </member>
  197. <member name="P:System.Range.End">
  198. <summary>Represent the exclusive end index of the Range.</summary>
  199. </member>
  200. <member name="M:System.Range.#ctor(System.Index,System.Index)">
  201. <summary>Construct a Range object using the start and end indexes.</summary>
  202. <param name="start">Represent the inclusive start index of the range.</param>
  203. <param name="end">Represent the exclusive end index of the range.</param>
  204. </member>
  205. <member name="M:System.Range.Equals(System.Object)">
  206. <summary>Indicates whether the current Range object is equal to another object of the same type.</summary>
  207. <param name="value">An object to compare with this object</param>
  208. </member>
  209. <member name="M:System.Range.Equals(System.Range)">
  210. <summary>Indicates whether the current Range object is equal to another Range object.</summary>
  211. <param name="other">An object to compare with this object</param>
  212. </member>
  213. <member name="M:System.Range.GetHashCode">
  214. <summary>Returns the hash code for this instance.</summary>
  215. </member>
  216. <member name="M:System.Range.ToString">
  217. <summary>Converts the value of the current Range object to its equivalent string representation.</summary>
  218. </member>
  219. <member name="M:System.Range.StartAt(System.Index)">
  220. <summary>Create a Range object starting from start index to the end of the collection.</summary>
  221. </member>
  222. <member name="M:System.Range.EndAt(System.Index)">
  223. <summary>Create a Range object starting from first element in the collection to the end Index.</summary>
  224. </member>
  225. <member name="P:System.Range.All">
  226. <summary>Create a Range object starting from first element to the end.</summary>
  227. </member>
  228. <member name="M:System.Range.GetOffsetAndLength(System.Int32)">
  229. <summary>Calculate the start offset and length of range object using a collection length.</summary>
  230. <param name="length">The length of the collection that the range will be used with. length has to be a positive value.</param>
  231. <remarks>
  232. For performance reason, we don’t validate the input length parameter against negative values.
  233. It is expected Range will be used with collections which always have non-negative length/count.
  234. We validate the range is inside the length scope though.
  235. </remarks>
  236. </member>
  237. <member name="M:StringExtensions.Contains(System.String,System.String,System.StringComparison)">
  238. <summary>
  239. String.Contains implementation for .NET Framework and .NET Standard as an extension method.
  240. </summary>
  241. </member>
  242. </members>
  243. </doc>