Generator.SetInputValues Method

Sets the input values for a data generator.

Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)

Syntax

'Declaration
Public Sub SetInputValues ( _
    inputs As IDictionary(Of String, Object) _
)
'Usage
Dim instance As Generator
Dim inputs As IDictionary(Of String, Object)

instance.SetInputValues(inputs)
public void SetInputValues (
    IDictionary<string,Object> inputs
)
public:
virtual void SetInputValues (
    IDictionary<String^, Object^>^ inputs
) sealed
public final void SetInputValues (
    IDictionary<String,Object> inputs
)
public final function SetInputValues (
    inputs : IDictionary<String,Object>
)

Parameters

  • inputs
    An IDictionary of key and value pairs. By default, the key is the property name. The value is the value of the input that corresponds to the key.

Remarks

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

This method calls OnSetInputValues. You should override OnSetInputValues if you want to override the SetInputValues functionality.

See Also

Reference

Generator Class
Generator Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
GeneratorAttribute
GeneratorInit
IGenerator

Concepts

An Overview of Data Generator Extensibility
Specifying Details of Data Generation for a Column

Other Resources

Creating Custom Data Generators