C# 클래스 Notify.Tracker

Creates an instance of this class to track changes to as many objects as needed. It automatically drills down and track changes to all objects reachable from the explicitly tracked objects. In a MVVM application, it should be sufficient to track just the root view model.
This class is not thread-safe. If you want to access instances of this class from multiple threads, you need to synchronize properly.
상속: IDisposable
파일 보기 프로젝트 열기: buunguyen/notify 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void

Cleans up the tracker and all tracked objects.

Track ( ) : Tracker

Tracks one or more objects and all of their properties, including collections, recursively. Can be invoked multiple times for different objects.

메소드 상세

Dispose() 공개 메소드

Cleans up the tracker and all tracked objects.
public Dispose ( ) : void
리턴 void

Track() 공개 메소드

Tracks one or more objects and all of their properties, including collections, recursively. Can be invoked multiple times for different objects.
public Track ( ) : Tracker
리턴 Tracker