C# Class CmisSync.Lib.Streams.NotifyPropertyChangedStream

Notify property changed stream wrapps the given stream and notifies about property changes.
Inheritance: StreamWrapper, INotifyPropertyChanged
Datei anzeigen Open project: OpenDataSpace/CmisSync

Public Methods

Method Description
NotifyPropertyChangedStream ( Stream s ) : System

Initializes a new instance of the CmisSync.Lib.Streams.NotifyPropertyChangedStream class.

Protected Methods

Method Description
NotifyPropertyChanged ( string propertyName ) : void

This method is called by the Set accessor of each property.

Method Details

NotifyPropertyChanged() protected method

This method is called by the Set accessor of each property.
protected NotifyPropertyChanged ( string propertyName ) : void
propertyName string Property name.
return void

NotifyPropertyChangedStream() public method

Initializes a new instance of the CmisSync.Lib.Streams.NotifyPropertyChangedStream class.
public NotifyPropertyChangedStream ( Stream s ) : System
s Stream Stream to be wrapped.
return System