次の方法で共有


NSHttpCookieStorage.AcceptPolicyChangedNotification プロパティ

定義

AcceptPolicyChanged の通知定数

[Foundation.Advice("Use NSHttpCookieStorage.Notifications.ObserveAcceptPolicyChanged helper method instead.")]
[Foundation.Field("NSHTTPCookieManagerCookiesChangedNotification", "Foundation")]
public static Foundation.NSString AcceptPolicyChangedNotification { get; }
member this.AcceptPolicyChangedNotification : Foundation.NSString

プロパティ値

NSString 定数は、NSNotificationCenter のトークンとして使用する必要があります。

属性

注釈

この定数を と共 NSNotificationCenter に使用して、この通知のリスナーを登録できます。 これらの値は、実際の文字列コンテンツに対して純粋に使用されるのではなく、一部のネイティブ ライブラリでトークンとして使用できるため、これは文字列ではなく NSString です。 コールバックの 'notification' パラメーターには、通知の種類に固有の追加情報が含まれています。

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        NSHttpCookieStorage.AcceptPolicyChangedNotification, (notification) => {Console.WriteLine ("Received the notification NSHttpCookieStorage", notification); }


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification NSHttpCookieStorage", notification);
}

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (NSHttpCookieStorage.AcceptPolicyChangedNotification, Callback);
}

適用対象