|
37 | 37 | <Parameter Name="handle" Type="System.IntPtr" />
|
38 | 38 | </Parameters>
|
39 | 39 | <Docs>
|
40 |
| - <param name="handle">The native library handle to be freed.</param> |
41 |
| - <summary>Frees a given a loaded library handle, or takes no action if the input handle is <see cref="F:System.IntPtr.Zero" />.</summary> |
| 40 | + <param name="handle">The native library OS handle to be freed.</param> |
| 41 | + <summary>Frees a loaded library with the specified OS handle, or takes no action if the input handle is <see cref="F:System.IntPtr.Zero" />.</summary> |
42 | 42 | <remarks>To be added.</remarks>
|
43 | 43 | </Docs>
|
44 | 44 | </Member>
|
|
62 | 62 | <Parameter Name="name" Type="System.String" />
|
63 | 63 | </Parameters>
|
64 | 64 | <Docs>
|
65 |
| - <param name="handle">The native library handle.</param> |
| 65 | + <param name="handle">The native library OS handle.</param> |
66 | 66 | <param name="name">The name of the exported symbol.</param>
|
67 | 67 | <summary>Gets the address of an exported symbol.</summary>
|
68 | 68 | <returns>The address of the symbol.</returns>
|
@@ -99,7 +99,7 @@ This is a simple wrapper around OS calls and does not perform any name mangling.
|
99 | 99 | <Docs>
|
100 | 100 | <param name="libraryPath">The name of the native library to be loaded.</param>
|
101 | 101 | <summary>Provides a simple API for loading a native library that wraps the OS loader and uses default flags.</summary>
|
102 |
| - <returns>The handle for the loaded native library.</returns> |
| 102 | + <returns>The OS handle for the loaded native library.</returns> |
103 | 103 | <remarks>To be added.</remarks>
|
104 | 104 | <exception cref="T:System.ArgumentNullException">
|
105 | 105 | <paramref name="libraryPath" /> is <see langword="null" />.</exception>
|
@@ -131,7 +131,7 @@ This is a simple wrapper around OS calls and does not perform any name mangling.
|
131 | 131 | <param name="assembly">The assembly loading the native library.</param>
|
132 | 132 | <param name="searchPath">The search path.</param>
|
133 | 133 | <summary>Provides a high-level API for loading a native library.</summary>
|
134 |
| - <returns>The handle for the loaded library.</returns> |
| 134 | + <returns>The OS handle for the loaded library.</returns> |
135 | 135 | <remarks>
|
136 | 136 | <format type="text/markdown"><![CDATA[
|
137 | 137 |
|
@@ -208,7 +208,7 @@ Only one resolver can be registered per assembly. Trying to register a second re
|
208 | 208 | <Parameter Name="address" Type="System.IntPtr" RefType="out" />
|
209 | 209 | </Parameters>
|
210 | 210 | <Docs>
|
211 |
| - <param name="handle">The native library handle.</param> |
| 211 | + <param name="handle">The native library OS handle.</param> |
212 | 212 | <param name="name">The name of the exported symbol.</param>
|
213 | 213 | <param name="address">When the method returns, contains the symbol address, if it exists.</param>
|
214 | 214 | <summary>Gets the address of an exported symbol and returns a value that indicates whether the method call succeeded.</summary>
|
@@ -240,7 +240,7 @@ Only one resolver can be registered per assembly. Trying to register a second re
|
240 | 240 | </Parameters>
|
241 | 241 | <Docs>
|
242 | 242 | <param name="libraryPath">The name of the native library to be loaded.</param>
|
243 |
| - <param name="handle">When the method returns, the handle of the loaded native library.</param> |
| 243 | + <param name="handle">When the method returns, the OS handle of the loaded native library.</param> |
244 | 244 | <summary>Provides a simple API for loading a native library and returns a value that indicates whether the operation succeeded.</summary>
|
245 | 245 | <returns>
|
246 | 246 | <see langword="true" /> if the native library was loaded successful; otherwise, <see langword="false" />.</returns>
|
@@ -273,7 +273,7 @@ Only one resolver can be registered per assembly. Trying to register a second re
|
273 | 273 | <param name="libraryName">The name of the native library to be loaded.</param>
|
274 | 274 | <param name="assembly">The assembly loading the native library.</param>
|
275 | 275 | <param name="searchPath">The search path.</param>
|
276 |
| - <param name="handle">When the method returns, the handle of the loaded native library.</param> |
| 276 | + <param name="handle">When the method returns, the OS handle of the loaded native library.</param> |
277 | 277 | <summary>Provides a high-level API that loads a native library and returns a value that indicates whether the operation succeeded.</summary>
|
278 | 278 | <returns>
|
279 | 279 | <see langword="true" /> if the load operation was successful; otherwise, <see langword="false" />.</returns>
|
|
0 commit comments