UIAccessibility.PostNotification Method

Definition

Overloads

Name Description
PostNotification(Int32, NSObject)

Posts an accessibility notification using a raw notification identifier.

PostNotification(UIAccessibilityPostNotification, NSObject)

Posts an accessibility notification.

PostNotification(Int32, NSObject)

Posts an accessibility notification using a raw notification identifier.

public static void PostNotification(int notification, Foundation.NSObject argument);
public static void PostNotification(int notification, Foundation.NSObject? argument);
static member PostNotification : int * Foundation.NSObject -> unit

Parameters

notification
Int32

The notification identifier to post.

argument
NSObject

The argument to pass with the notification, or null.

Applies to

PostNotification(UIAccessibilityPostNotification, NSObject)

Posts an accessibility notification.

public static void PostNotification(UIKit.UIAccessibilityPostNotification notification, Foundation.NSObject argument);
public static void PostNotification(UIKit.UIAccessibilityPostNotification notification, Foundation.NSObject? argument);
static member PostNotification : UIKit.UIAccessibilityPostNotification * Foundation.NSObject -> unit

Parameters

notification
UIAccessibilityPostNotification

The notification to post.

argument
NSObject

The argument to pass with the notification, or null.

Applies to