IBaseViewModel Interface |
Note: This API is now obsolete.
[Missing <summary> documentation for "T:BionicCode.Utilities.Net.Standard.ViewModel.IBaseViewModel"]
Namespace: BionicCode.Utilities.Net.Standard.ViewModel
[ObsoleteAttribute("This interface is deprecated it will be removed. Use the renamed 'IViewModel' and abstract implementation 'ViewModel' instead (same API).")] public interface IBaseViewModel : IViewModel, INotifyPropertyChanged, INotifyDataErrorInfo
The IBaseViewModel type exposes the following members.
Name | Description | |
---|---|---|
HasErrors | Gets a value that indicates whether the entity has validation errors. (Inherited from INotifyDataErrorInfo.) |
Name | Description | |
---|---|---|
GetErrors | Gets the validation errors for a specified property or for the entire entity. (Inherited from INotifyDataErrorInfo.) | |
GetPropertyErrors |
Gets all error messages of the specified property. If the propertyName is null all error messages will be returned.
(Inherited from IViewModel.) | |
PropertyHasError |
Checks whether the specified property has errors or is valid.
(Inherited from IViewModel.) |
Name | Description | |
---|---|---|
ErrorsChanged | Occurs when the validation errors have changed for a property or for the entire entity. (Inherited from INotifyDataErrorInfo.) | |
PropertyChanged | Occurs when a property value changes. (Inherited from INotifyPropertyChanged.) | |
PropertyValueChanged |
PropertyChanged implementation that sends old value and new value of the change and raises the INotifyPropertyChanged event.
|