AVAsset.Notifications.ObserveWasDefragmented 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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
매개 변수
- handler
- EventHandler<NSNotificationEventArgs>
반환
토큰 개체를 삭제하거나 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 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
- handler
- EventHandler<NSNotificationEventArgs>
반환
토큰 개체를 삭제하거나 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 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 ();