Поделиться через


AVAsset.Notifications.ObserveWasDefragmented Метод

Определение

Перегрузки

ObserveWasDefragmented(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы WasDefragmentedNotification .

ObserveWasDefragmented(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы WasDefragmentedNotification .

ObserveWasDefragmented(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы WasDefragmentedNotification .

public static Foundation.NSObject ObserveWasDefragmented (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWasDefragmented : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем его удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на WasDefragmentedNotification уведомления.

// Listen to all notifications posted for any object
var token = AVAsset.Notifications.ObserveWasDefragmented ((notification) => {
	Console.WriteLine ("Observed WasDefragmentedNotification!");
};

// Listen to all notifications posted for a single object
var token = AVAsset.Notifications.ObserveWasDefragmented (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed WasDefragmentedNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Применяется к

ObserveWasDefragmented(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы WasDefragmentedNotification .

public static Foundation.NSObject ObserveWasDefragmented (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWasDefragmented : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Параметры

objectToObserve
NSObject

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем его удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на WasDefragmentedNotification уведомления.

// Listen to all notifications posted for any object
var token = AVAsset.Notifications.ObserveWasDefragmented ((notification) => {
	Console.WriteLine ("Observed WasDefragmentedNotification!");
};

// Listen to all notifications posted for a single object
var token = AVAsset.Notifications.ObserveWasDefragmented (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed WasDefragmentedNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Применяется к