Share via


Generator.OnValidateInputs Method

Validates that all the required inputs on the data generator have been set.

Namespace:  Microsoft.Data.Schema.DataGenerator
Assembly:  Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)

Syntax

'Declaration
Protected Overridable Sub OnValidateInputs
'Usage

Me.OnValidateInputs()
protected virtual void OnValidateInputs()
protected:
virtual void OnValidateInputs()
protected function OnValidateInputs()
abstract OnValidateInputs : unit -> unit 
override OnValidateInputs : unit -> unit 

Remarks

This method validates inputs at run time. If you want to validate inputs at design time, create a custom designer or override an existing designer.

The ValidateInputs method calls this method. You should override OnValidateInputs if you want to override the ValidateInputs functionality.

If the inputs are not valid, you should throw a InputValidationException in this method. You can specify Error, which stops the data generation, or Warning, which does not stop the data generation.

.NET Framework Security

See Also

Reference

Generator Class

Generator Members

Microsoft.Data.Schema.DataGenerator Namespace