Share via


Generator.SetInputValues Method

Sets the input values for a data generator.

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

Syntax

'Declaration
Public Sub SetInputValues ( _
    inputs As IDictionary(Of String, Object) _
)
public void SetInputValues(
    IDictionary<string, Object> inputs
)
public:
virtual void SetInputValues(
    IDictionary<String^, Object^>^ inputs
) sealed
abstract SetInputValues : 
        inputs:IDictionary<string, Object> -> unit 
override SetInputValues : 
        inputs:IDictionary<string, Object> -> unit 
public final function SetInputValues(
    inputs : IDictionary<String, Object>
)

Parameters

Implements

IGenerator.SetInputValues(IDictionary<String, Object>)

Remarks

These inputs are the values that the user of the generator specifies in the Properties window. Each key corresponds to the key value that is inside the InputDescriptor class.

This method calls OnSetInputValues. To override or modify the functionality of the SetInputValues, you must override the OnSetInputValues method.

.NET Framework Security

See Also

Reference

Generator Class

Microsoft.Data.Schema.Tools.DataGenerator Namespace

InputDescriptor

OnSetInputValues