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


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

Syntax

Visual Basic (Declaration)
Public Overrides Function IsValid( _ 
   Optional ByRef results As FdfResultCollection = Nothing,  _ 
   Optional ByVal sender As IFdfQueryable = Nothing _ 
) As Boolean _
    Implements IFdfQueryable.IsValid
C#
public override bool IsValid(
   [OptionalAttribute] ref FdfResultCollection results,
   [OptionalAttribute] IFdfQueryable sender
)
C++
public:
 virtual bool IsValid(
   [OptionalAttribute] FdfResultCollection% results,
   [OptionalAttribute] IFdfQueryable sender
) override 
J#
public override bool IsValid(
   /** @attribute OptionalAttribute() */ FdfResultCollection results,
   /** @attribute OptionalAttribute() */ IFdfQueryable sender
)
JScript
public override  function IsValid(
   OptionalAttribute results : FdfResultCollection,
   OptionalAttribute sender : IFdfQueryable
) : bool

Parameters

results
Validation results.
sender
Sender object initiating a validation.

Implements

IFdfQueryable.IsValid

See Also