Click or drag to resize
ValidateFileEventArgs Class
Provides data for the ValidatingFile event of the KaxUpload control.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    Kettic.AspNet.Controls.UploadUploadedFileEventArgs
      Kettic.AspNet.Controls.UploadValidateFileEventArgs

Namespace: Kettic.AspNet.Controls.Upload
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public class ValidateFileEventArgs : UploadedFileEventArgs

The ValidateFileEventArgs type exposes the following members.

Properties
  NameDescription
Public propertyCode exampleIsValid
Gets or sets whether the value specified by UploadedFile property passed validation.
Public propertyCode exampleSkipInternalValidation
Gets or sets whether the internal validation should continue validating the file specified by the UploadedFile property.
Top
Remarks

A ValidatingFileEventArgs is passed to the ValidatingFile event handler to provide event data to the handler. The ValidatingFile event event is raised when validation is performed on the server. This allows you to perform a custom server-side validation routine on a file of a KaxUpload control.

See Also