NSMutableDictionary.LowlevelSetObject 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
| Name | Description |
|---|---|
| LowlevelSetObject(NSObject, IntPtr) |
Sets an object for a key using a low-level key pointer. |
| LowlevelSetObject(IntPtr, IntPtr) |
Sets an object for a key using low-level pointers. |
| LowlevelSetObject(String, IntPtr) |
Sets a string value for a key using a low-level key pointer. |
LowlevelSetObject(NSObject, IntPtr)
Sets an object for a key using a low-level key pointer.
public void LowlevelSetObject(Foundation.NSObject obj, IntPtr key);
member this.LowlevelSetObject : Foundation.NSObject * nativeint -> unit
Parameters
- obj
- NSObject
The object to set.
- key
-
IntPtr
nativeint
The key pointer.
Exceptions
Thrown when obj is null.
Applies to
LowlevelSetObject(IntPtr, IntPtr)
LowlevelSetObject(String, IntPtr)
Sets a string value for a key using a low-level key pointer.
public void LowlevelSetObject(string str, IntPtr key);
member this.LowlevelSetObject : string * nativeint -> unit
Parameters
- str
- String
The string to set.
- key
-
IntPtr
nativeint
The key pointer.
Exceptions
Thrown when str is null.