Table of Contents

Interface IValidatesProperties

Namespace
ReactiveUI.Validation.Components.Abstractions
Assembly
ReactiveUI.Validation.dll

Interface marking a validation component that validates specific untyped properties.

public interface IValidatesProperties
Extension Methods

Properties

Properties

Gets the properties associated with this validation component.

IEnumerable<string> Properties { get; }

Property Value

IEnumerable<string>

PropertyCount

Gets the total number of properties referenced.

int PropertyCount { get; }

Property Value

int

Methods

ContainsPropertyName(string, bool)

Determine if a property name is actually contained within this.

bool ContainsPropertyName(string propertyName, bool exclusively = false)

Parameters

propertyName string

ViewModel property name.

exclusively bool

Indicates if the property to find is unique.

Returns

bool

Returns true if it contains the property, otherwise false.