다음을 통해 공유


ALAssetsLibrary.Notifications.ObserveChanged 메서드

정의

오버로드

ObserveChanged(EventHandler<ALAssetLibraryChangedEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

ObserveChanged(EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

ObserveChanged(NSObject, EventHandler<ALAssetLibraryChangedEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

ObserveChanged(NSObject, EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

ObserveChanged(EventHandler<ALAssetLibraryChangedEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

public static Foundation.NSObject ObserveChanged (EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> handler);
static member ObserveChanged : EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> -> Foundation.NSObject

매개 변수

handler
EventHandler<ALAssetLibraryChangedEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

다음 예제에서는 코드에서 이 메서드를 사용하는 방법을 보여줍니다.

//
// Lambda style
//

// listening
notification = ALAssetsLibrary.Notifications.ObserveChanged ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);

    Console.WriteLine ("UpdatedAssets", args.UpdatedAssets);
    Console.WriteLine ("InsertedAssetGroups", args.InsertedAssetGroups);
    Console.WriteLine ("UpdatedAssetGroups", args.UpdatedAssetGroups);
    Console.WriteLine ("DeletedAssetGroupsKey", args.DeletedAssetGroupsKey);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, AssetsLibrary.ALAssetLibraryChangedEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);

    Console.WriteLine ("UpdatedAssets", args.UpdatedAssets);
    Console.WriteLine ("InsertedAssetGroups", args.InsertedAssetGroups);
    Console.WriteLine ("UpdatedAssetGroups", args.UpdatedAssetGroups);
    Console.WriteLine ("DeletedAssetGroupsKey", args.DeletedAssetGroupsKey);
}

void Setup ()
{
    notification = ALAssetsLibrary.Notifications.ObserveChanged (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

적용 대상

ObserveChanged(EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

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

매개 변수

handler
EventHandler<NSNotificationEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

다음 예제에서는 코드에서 이 메서드를 사용하는 방법을 보여줍니다.

//
// Lambda style
//

// listening
notification = ALAssetsLibrary.Notifications.ObserveChanged ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSNotificationEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);
}

void Setup ()
{
    notification = ALAssetsLibrary.Notifications.ObserveChanged (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

적용 대상

ObserveChanged(NSObject, EventHandler<ALAssetLibraryChangedEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

public static Foundation.NSObject ObserveChanged (Foundation.NSObject objectToObserve, EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> handler);
static member ObserveChanged : Foundation.NSObject * EventHandler<AssetsLibrary.ALAssetLibraryChangedEventArgs> -> Foundation.NSObject

매개 변수

objectToObserve
NSObject

관찰할 개체입니다.

handler
EventHandler<ALAssetLibraryChangedEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

이 메서드를 사용하여 알림을 구독 ChangedNotification 할 수 있습니다.

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

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

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

적용 대상

ObserveChanged(NSObject, EventHandler<NSNotificationEventArgs>)

상수에 대한 강력한 형식의 알림입니다 ChangedNotification .

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

매개 변수

objectToObserve
NSObject

관찰할 개체입니다.

handler
EventHandler<NSNotificationEventArgs>

알림이 게시될 때 호출할 메서드입니다.

반환

알림을 삭제하거나 에 전달하여 알림 수신을 중지하는 데 사용할 수 있는 토큰 개체 RemoveObservers(IEnumerable<NSObject>)

설명

이 메서드를 사용하여 알림을 구독 ChangedNotification 할 수 있습니다.

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

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

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

적용 대상