IDistribution.SetInputValues Method
When implemented in a class, sets the input values for a distribution.
Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in Microsoft.VisualStudio.TeamSystem.Data.dll)
Syntax
'Declaration
Sub SetInputValues ( _
inputs As IDictionary(Of String, Object) _
)
'Usage
Dim instance As IDistribution
Dim inputs As IDictionary(Of String, Object)
instance.SetInputValues(inputs)
void SetInputValues(
IDictionary<string, Object> inputs
)
void SetInputValues(
IDictionary<String^, Object^>^ inputs
)
function SetInputValues(
inputs : IDictionary<String, Object>
)
Parameters
- inputs
Type: System.Collections.Generic.IDictionary<String, Object>
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 specifies 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.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace