Class ReactiveValidationObject
- Namespace
- ReactiveUI.Validation.Helpers
- Assembly
- ReactiveUI.Validation.dll
Base class for ReactiveObjects that support INotifyDataErrorInfo validation.
public abstract class ReactiveValidationObject : ReactiveObject, IValidatableViewModel, INotifyDataErrorInfo, IDisposable
- Inheritance
-
ReactiveValidationObject
- Implements
- Extension Methods
Constructors
ReactiveValidationObject(IScheduler?, IValidationTextFormatter<string>?)
Initializes a new instance of the ReactiveValidationObject class.
protected ReactiveValidationObject(IScheduler? scheduler = null, IValidationTextFormatter<string>? formatter = null)
Parameters
scheduler
ISchedulerScheduler for the ValidationContext. Uses System.Reactive.Concurrency.CurrentThreadScheduler by default.
formatter
IValidationTextFormatter<string>Validation formatter. Defaults to SingleLineFormatter. In order to override the global default value, implement IValidationTextFormatter<TOut> and register an instance of IValidationTextFormatter<string> into Splat.Locator.
Properties
HasErrors
public bool HasErrors { get; }
Property Value
ValidationContext
Gets get the validation context.
public IValidationContext ValidationContext { get; }
Property Value
Methods
Dispose()
Releases unmanaged and - optionally - managed resources.
public void Dispose()
Dispose(bool)
Disposes the specified disposing.
protected virtual void Dispose(bool disposing)
Parameters
disposing
boolif set to
true
[disposing].
GetErrors(string?)
Returns a collection of error messages, required by the INotifyDataErrorInfo interface.
public virtual IEnumerable GetErrors(string? propertyName)
Parameters
propertyName
stringProperty to search error notifications for.
Returns
- IEnumerable
A list of error messages, usually strings.
RaiseErrorsChanged(string)
Raises the ErrorsChanged event.
protected void RaiseErrorsChanged(string propertyName = "")
Parameters
propertyName
stringThe name of the validated property.
Events
ErrorsChanged
public event EventHandler<DataErrorsChangedEventArgs>? ErrorsChanged