Share via


DictionaryContainer.SetStringValue Method

Definition

Overloads

SetStringValue(NSString, NSString)

Associates a nullable NSString with key.

SetStringValue(NSString, String)

Associates a nullable String with key.

SetStringValue(NSString, NSString)

Associates a nullable NSString with key.

protected void SetStringValue(Foundation.NSString key, Foundation.NSString? value);
member this.SetStringValue : Foundation.NSString * Foundation.NSString -> unit

Parameters

key
NSString

The identifier of the value to get.

value
NSString

The nullable NSString value to be associated with key. Pass null to remove any existing association.

Applies to

SetStringValue(NSString, String)

Associates a nullable String with key.

protected void SetStringValue(Foundation.NSString key, string? value);
member this.SetStringValue : Foundation.NSString * string -> unit

Parameters

key
NSString

The identifier of the value to get.

value
String

The nullable String value to be associated with key. Pass null to remove any existing association.

Applies to