NSMutableDictionary.LowlevelSetObject Method

Definition

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)

Sets an object for a key using low-level pointers.

public void LowlevelSetObject(IntPtr obj, IntPtr key);
member this.LowlevelSetObject : nativeint * nativeint -> unit

Parameters

obj
IntPtr

nativeint

The object pointer.

key
IntPtr

nativeint

The key pointer.

Applies to

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.

Applies to