DetailCheckConstraintTMaster, TDetailDetailCheck Property  | 
 
            Gets the detail check function.
            The detail check function is called to check for validity each detail object
            and should return  if the data is valid.
            
 
    Namespace: 
   Aloe.SystemFrameworks.Domain.Validation
    Assembly:
   Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic Func<TDetail, BusinessEvent, bool> DetailCheck { get; }Public ReadOnly Property DetailCheck As Func(Of TDetail, BusinessEvent, Boolean)
	Get
public:
property Func<TDetail, BusinessEvent^, bool>^ DetailCheck {
	Func<TDetail, BusinessEvent^, bool>^ get ();
}member DetailCheck : Func<'TDetail, BusinessEvent, bool> with get
Property Value
Type: 
FuncTDetail, 
BusinessEvent, 
Boolean
            The detail check function.
            
See Also