Distribution.SetInputValues Method
Sets input values for a distribution. This method cannot be overridden.
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
- inputs
Type: System.Collections.Generic.IDictionary<String, Object>
An IDictionary<TKey, TValue> where the key is the input property name and the object is the property value.
Implements
IDistribution.SetInputValues(IDictionary<String, Object>)
Remarks
The SetInputValues() method calls the OnSetInputValues() method. If you want to modify the functionality of this SetInputValues() method, you must override the OnSetInputValues() method.
.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.
See Also
Reference
Microsoft.Data.Schema.Tools.DataGenerator Namespace
OnSetInputValues()