Design Pattern Framework 3.5
BaseModel Class
Patterns-In-Action! Application ► WPFModel.BusinessModelObjects ► BaseModel
Abstract base class for business object models.
Declaration Syntax
C# | Visual Basic |
public abstract class BaseModel : INotifyPropertyChanged
Public MustInherit Class BaseModel _ Implements INotifyPropertyChanged
Members
All Members | Constructors | Methods | Fields | Events | |
|
|
|
Icon | Member | Description |
---|---|---|
BaseModel()()() |
Constructor
|
|
_dispatcher |
|
|
ConfirmOnUIThread()()() |
Debugging facility that ensures methods are called on the UI thread.
|
|
Equals(Object) | (Inherited from Object.) |
|
Finalize()()() |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) |
|
GetHashCode()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) |
|
GetType()()() |
Gets the Type of the current instance.
(Inherited from Object.) |
|
MemberwiseClone()()() |
Creates a shallow copy of the current Object.
(Inherited from Object.) |
|
Notify(String) |
Utility function for use by subclasses to notify that a property value has changed.
|
|
PropertyChanged |
PropertyChanged event for INotifyPropertyChanged implementation.
|
|
ToString()()() | (Inherited from Object.) |
Remarks
Methods ensure that they are called on the UI thread only.
Inheritance Hierarchy
Object | ||
BaseModel | ||
CustomerModel |