Microsoft.Bcl.AsyncInterfaces.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Bcl.AsyncInterfaces</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  8. <summary>
  9. Attribute used to indicate a source generator should create a function for marshalling
  10. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  11. </summary>
  12. <remarks>
  13. This attribute is meaningless if the source generator associated with it is not enabled.
  14. The current built-in source generator only supports C# and only supplies an implementation when
  15. applied to static, partial, non-generic methods.
  16. </remarks>
  17. </member>
  18. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  19. <summary>
  20. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  21. </summary>
  22. <param name="libraryName">Name of the library containing the import.</param>
  23. </member>
  24. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  25. <summary>
  26. Gets the name of the library containing the import.
  27. </summary>
  28. </member>
  29. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  30. <summary>
  31. Gets or sets the name of the entry point to be called.
  32. </summary>
  33. </member>
  34. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  35. <summary>
  36. Gets or sets how to marshal string arguments to the method.
  37. </summary>
  38. <remarks>
  39. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  40. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  41. </remarks>
  42. </member>
  43. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  44. <summary>
  45. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  46. </summary>
  47. <remarks>
  48. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  49. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  50. </remarks>
  51. </member>
  52. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  53. <summary>
  54. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  55. on other platforms) before returning from the attributed method.
  56. </summary>
  57. </member>
  58. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  59. <summary>
  60. Specifies how strings should be marshalled for generated p/invokes
  61. </summary>
  62. </member>
  63. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  64. <summary>
  65. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  66. </summary>
  67. </member>
  68. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  69. <summary>
  70. Use the platform-provided UTF-8 marshaller.
  71. </summary>
  72. </member>
  73. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  74. <summary>
  75. Use the platform-provided UTF-16 marshaller.
  76. </summary>
  77. </member>
  78. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  79. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  80. </member>
  81. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  82. <summary>Initializes the attribute with a field or property member.</summary>
  83. <param name="member">
  84. The field or property member that is promised to be not-null.
  85. </param>
  86. </member>
  87. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  88. <summary>Initializes the attribute with the list of field and property members.</summary>
  89. <param name="members">
  90. The list of field and property members that are promised to be not-null.
  91. </param>
  92. </member>
  93. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  94. <summary>Gets field or property member names.</summary>
  95. </member>
  96. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  97. <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>
  98. </member>
  99. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  100. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  101. <param name="returnValue">
  102. The return value condition. If the method returns this value, the associated parameter will not be null.
  103. </param>
  104. <param name="member">
  105. The field or property member that is promised to be not-null.
  106. </param>
  107. </member>
  108. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  109. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  110. <param name="returnValue">
  111. The return value condition. If the method returns this value, the associated parameter will not be null.
  112. </param>
  113. <param name="members">
  114. The list of field and property members that are promised to be not-null.
  115. </param>
  116. </member>
  117. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  118. <summary>Gets the return value condition.</summary>
  119. </member>
  120. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  121. <summary>Gets field or property member names.</summary>
  122. </member>
  123. </members>
  124. </doc>