Share via


Distribution.OnSetInputValues Method

When overridden in a derived class, sets the input properties for a distribution.

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

Syntax

'Declaration
Protected Overridable Sub OnSetInputValues ( _
    inputs As IDictionary(Of String, Object) _
)
'Usage
Dim inputs As IDictionary(Of String, Object)

Me.OnSetInputValues(inputs)
protected virtual void OnSetInputValues (
    IDictionary<string,Object> inputs
)
protected:
virtual void OnSetInputValues (
    IDictionary<String^, Object^>^ inputs
)
protected void OnSetInputValues (
    IDictionary<String,Object> inputs
)
protected function OnSetInputValues (
    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

The values that this method sets are the additional input properties that the user of the distribution enters in the Properties window. Not all distributions have additional properties. For example, the Normal distribution has a Deviation property, but the Exponential distribution has no additional properties.

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

See Also

Reference

Distribution Class
Distribution Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
IDistribution
DistributionAttribute
DistributionInit
DefaultDistributionDesigner Class

Other Resources

Generating Data with Data Generators