Dlfcn.SetUInt64 Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetUInt64(IntPtr, String, Int64) |
Obsolete.
Sets the specified symbol in the library handle to the specified long value. |
SetUInt64(IntPtr, String, UInt64) |
Sets the specified symbol in the library handle to the specified ulong value. |
SetUInt64(IntPtr, String, Int64)
Caution
Use 'SetInt64' for long values instead.
Sets the specified symbol in the library handle to the specified long value.
[System.Obsolete("Use 'SetInt64' for long values instead.")]
public static void SetUInt64 (IntPtr handle, string symbol, long value);
static member SetUInt64 : nativeint * string * int64 -> unit
Parameters
- handle
-
IntPtr
nativeint
Handle to the dynamic library previously opened with dlopen(String, Int32).
- symbol
- String
Name of the public symbol in the dynamic library to look up.
- value
- Int64
The value to set.
- Attributes
Applies to
SetUInt64(IntPtr, String, UInt64)
Sets the specified symbol in the library handle to the specified ulong value.
public static void SetUInt64 (IntPtr handle, string symbol, ulong value);
static member SetUInt64 : nativeint * string * uint64 -> unit
Parameters
- handle
-
IntPtr
nativeint
Handle to the dynamic library previously opened with dlopen(String, Int32).
- symbol
- String
Name of the public symbol in the dynamic library to look up.
- value
- UInt64
The value to set.