IDistribution.SetInputValues Method
When implemented in a class, sets the input values for a distribution.
Namespace: Microsoft.Data.Schema.Tools.DataGenerator
Assembly: Microsoft.Data.Schema.Tools (in Microsoft.Data.Schema.Tools.dll)
Syntax
'Declaration
Sub SetInputValues ( _
inputs As IDictionary(Of String, Object) _
)
void SetInputValues(
IDictionary<string, Object> inputs
)
void SetInputValues(
IDictionary<String^, Object^>^ inputs
)
abstract SetInputValues :
inputs:IDictionary<string, Object> -> unit
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, and the value is the corresponding value of the property.
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.
.NET Framework Security
- 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.