Freigeben über


NSHttpCookie.CookieFromProperties(NSDictionary) Methode

Definition

Factorymethode zum Erstellen von Cookies.

[Foundation.Export("cookieWithProperties:")]
public static Foundation.NSHttpCookie CookieFromProperties (Foundation.NSDictionary properties);
static member CookieFromProperties : Foundation.NSDictionary -> Foundation.NSHttpCookie

Parameter

properties
NSDictionary

Wörterbuch mit den Cookiewerten.

Gibt zurück

Attribute

Hinweise

Zum Instanziieren von Instanzen von NSHTTPCookie müssen Sie ein NSDictionary übergeben.

Bei den tatsächlichen Schlüsseln muss es sich um eins der statischen Öffentlichen Schlüsselfelder dieser Klasse (KeyName, , KeyOriginUrlKeyValueKeyVersion, KeyDomain, KeyPath, KeySecure, KeyMaximumAgeKeyCommentKeyCommentUrlKeyExpiresKeyDiscardund KeyPort) handeln.


var properties = NSDictionary.FromObjectsAndKeys (new object [] { "MyCookieValue" }, new object [] { NSHttpCookie.KeyValue });
var cookie = new NSHttpCookie (properties);

Gilt für: