ViewModelIsPropertyValidT Method (ExpressionFuncT) |
Determines whether the property is valid or not.
Namespace:
Enkoni.Framework.UI.Mvvm
Assembly:
Enkoni.Framework.UI (in Enkoni.Framework.UI.dll) Version: 1.3.0.1
Syntaxprotected bool IsPropertyValid<T>(
Expression<Func<T>> property
)
Protected Function IsPropertyValid(Of T) (
property As Expression(Of Func(Of T))
) As Boolean
protected:
generic<typename T>
bool IsPropertyValid(
Expression<Func<T>^>^ property
)
member IsPropertyValid :
property : Expression<Func<'T>> -> bool
Parameters
- property
- Type: System.Linq.ExpressionsExpressionFuncT
The property that is checked.
Type Parameters
- T
- The type of property.
Return Value
Type:
Boolean if the specified property is valid; otherwise
.
See Also