adTempus API
ArcanaDevelopment.adTempus.Shared.Extensibility Namespace / ICustomObjectSettings Interface / Validate Method
Collection of messages to add validation messages to.


In This Topic
    Validate Method (ICustomObjectSettings)
    In This Topic
    Validate the object settings.
    Syntax
    'Declaration
     
    
    Sub Validate( _
       ByVal messages As IList(Of Message) _
    ) 
    void Validate( 
       IList<Message> messages
    )
    void Validate( 
       IList<Message^>^ messages
    ) 

    Parameters

    messages
    Collection of messages to add validation messages to.
    Remarks
    The implementer should perform validation of the object. For each problem found, add a Message to the messages collection. Any message with a MessageType of Error or higher will prevent the object from being saved.
    See Also