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
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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