C# Class Castle.Components.Validator.BrowserValidationConfiguration

Represents the base of a browser configuration.
Show file Open project: nats/castle-1.0.3-mono Class Usage Examples

Public Methods

Method Description
Configure ( IDictionary parameters ) : void

Configures the JS library based on the supplied parameters.

CreateAfterFormOpened ( string formId ) : string

Implementors should return any tag/js content to be rendered after the form tag is rendered.

CreateBeforeFormClosed ( string formId ) : string

Implementors should return any tag/js content to be rendered after the form tag is closed.

Method Details

Configure() public method

Configures the JS library based on the supplied parameters.
public Configure ( IDictionary parameters ) : void
parameters IDictionary The parameters.
return void

CreateAfterFormOpened() public method

Implementors should return any tag/js content to be rendered after the form tag is rendered.
public CreateAfterFormOpened ( string formId ) : string
formId string The form id.
return string

CreateBeforeFormClosed() public method

Implementors should return any tag/js content to be rendered after the form tag is closed.
public CreateBeforeFormClosed ( string formId ) : string
formId string The form id.
return string