C# 클래스 Lawo.ComponentModel.PropertyChangedRegistration

Represents multiple subscriptions to INotifyPropertyChanged.PropertyChanged.
상속: IDisposable
파일 보기 프로젝트 열기: Lawo/ember-plus-sharp

공개 메소드들

메소드 설명
Dispose ( ) : void

Stops forwarding change notifications.

If the registration is intended to be permanent it is permissible to to never call Dispose.

PropertyChangedRegistration ( PropertyChangedEventHandler handler ) : System

Initializes a new instance of the PropertyChangedRegistration class.

After construction, each change to one of the properties in properties is forwarded to handler until Dispose is called.

비공개 메소드들

메소드 설명
OnPropertyChanged ( object sender, PropertyChangedEventArgs e ) : void

메소드 상세

Dispose() 공개 메소드

Stops forwarding change notifications.
If the registration is intended to be permanent it is permissible to to never call Dispose.
public Dispose ( ) : void
리턴 void

PropertyChangedRegistration() 공개 메소드

Initializes a new instance of the PropertyChangedRegistration class.
After construction, each change to one of the properties in properties is forwarded to handler until Dispose is called.
One or more elements of equal null. /// and/or /// equal null.
public PropertyChangedRegistration ( PropertyChangedEventHandler handler ) : System
handler PropertyChangedEventHandler The handler to which all change notifications are forwarded.
리턴 System