DictionaryContainer.SetNumberValue Method

Definition

Overloads

SetNumberValue(NSString, Nullable<Double>)

Stores the double value (or null) and associates it with the key.

SetNumberValue(NSString, Nullable<Int32>)

Stores the int value (or null) and associates it with the key.

SetNumberValue(NSString, Nullable<Int64>)

Stores the long value (or null) and associates it with the key.

SetNumberValue(NSString, Nullable<nint>)

Stores the native integer value (or null) and associates it with the key.

SetNumberValue(NSString, Nullable<nuint>)

Stores the native unsigned int value (or null) and associates it with the key.

SetNumberValue(NSString, Nullable<Single>)

Stores the float value (or null) and associates it with the key.

SetNumberValue(NSString, Nullable<UInt32>)

Stores the unsigned int value (or null) and associates it with the key.

SetNumberValue(NSString, Nullable<Double>)

Stores the double value (or null) and associates it with the key.

protected void SetNumberValue (Foundation.NSString key, Nullable<double> value);
member this.SetNumberValue : Foundation.NSString * Nullable<double> -> unit

Parameters

key
NSString

The identifier associated with the double.

value
Nullable<Double>

The nullable double to be associated with key.

Applies to

SetNumberValue(NSString, Nullable<Int32>)

Stores the int value (or null) and associates it with the key.

protected void SetNumberValue (Foundation.NSString key, Nullable<int> value);
member this.SetNumberValue : Foundation.NSString * Nullable<int> -> unit

Parameters

key
NSString

The identifier associated with the int.

value
Nullable<Int32>

The nullable int to be associated with key.

Applies to

SetNumberValue(NSString, Nullable<Int64>)

Stores the long value (or null) and associates it with the key.

protected void SetNumberValue (Foundation.NSString key, Nullable<long> value);
member this.SetNumberValue : Foundation.NSString * Nullable<int64> -> unit

Parameters

key
NSString

The identifier associated with the long.

value
Nullable<Int64>

The nullable long to be associated with key.

Applies to

SetNumberValue(NSString, Nullable<nint>)

Stores the native integer value (or null) and associates it with the key.

protected void SetNumberValue (Foundation.NSString key, Nullable<nint> value);
member this.SetNumberValue : Foundation.NSString * Nullable<nint> -> unit

Parameters

key
NSString

The identifier associated with the native integer value.

value

Nullable<System.System.IntPtr>

Nullable<System.nativeint>

The nullable native integer to be associated with key.

Applies to

SetNumberValue(NSString, Nullable<nuint>)

Stores the native unsigned int value (or null) and associates it with the key.

protected void SetNumberValue (Foundation.NSString key, Nullable<nuint> value);
member this.SetNumberValue : Foundation.NSString * Nullable<nuint> -> unit

Parameters

key
NSString

The identifier associated with the native unsigned int.

value

Nullable<System.System.UIntPtr>

Nullable<System.unativeint>

The nullable native unsigned int to be associated with key.

Applies to

SetNumberValue(NSString, Nullable<Single>)

Stores the float value (or null) and associates it with the key.

protected void SetNumberValue (Foundation.NSString key, Nullable<float> value);
member this.SetNumberValue : Foundation.NSString * Nullable<single> -> unit

Parameters

key
NSString

The identifier associated with the float.

value
Nullable<Single>

The nullable float to be associated with key.

Applies to

SetNumberValue(NSString, Nullable<UInt32>)

Stores the unsigned int value (or null) and associates it with the key.

protected void SetNumberValue (Foundation.NSString key, Nullable<uint> value);
member this.SetNumberValue : Foundation.NSString * Nullable<uint32> -> unit

Parameters

key
NSString

The identifier associated with the uint.

value
Nullable<UInt32>

The nullable unsigned int to be associated with key.

Applies to