Returns True if object instance is considered valid, otherwise returns False.


Namespace: FDF.Common
Assembly: FDF.Common (in FDF.Common.dll)

Syntax

Visual Basic (Declaration)
Public Function IsValid( _ 
   Optional ByRef results As FdfResultCollection = Nothing,  _ 
   Optional ByVal sender As IFdfQueryable = Nothing _ 
) As Boolean _
    Implements IFdfQueryable.IsValid
C#
public bool IsValid(
   [OptionalAttribute] ref FdfResultCollection results,
   [OptionalAttribute] IFdfQueryable sender
)
C++
public:
 bool IsValid(
   [OptionalAttribute] FdfResultCollection% results,
   [OptionalAttribute] IFdfQueryable sender
) sealed 
J#
public bool IsValid(
   /** @attribute OptionalAttribute() */ FdfResultCollection results,
   /** @attribute OptionalAttribute() */ IFdfQueryable sender
)
JScript
JScript does not support generic types and methods.

Parameters

results
Validation results.
sender
Sender object initiating a validation.

Implements

IFdfQueryable.IsValid

See Also