Distribution.OnSetInputValues Method
Implements custom behavior that is executed when the input values for a distribution are set.
Namespace: Microsoft.Data.Schema.Tools.DataGenerator
Assembly: Microsoft.Data.Schema.Tools (in Microsoft.Data.Schema.Tools.dll)
Syntax
'Declaration
Protected Overridable Sub OnSetInputValues ( _
inputs As IDictionary(Of String, Object) _
)
protected virtual void OnSetInputValues(
IDictionary<string, Object> inputs
)
protected:
virtual void OnSetInputValues(
IDictionary<String^, Object^>^ inputs
)
abstract OnSetInputValues :
inputs:IDictionary<string, Object> -> unit
override OnSetInputValues :
inputs:IDictionary<string, Object> -> unit
protected function OnSetInputValues(
inputs : IDictionary<String, Object>
)
Parameters
- inputs
Type: System.Collections.Generic.IDictionary<String, Object>
An IDictionary<TKey, TValue> object where the key is the property name and the corresponding object is the property value.
Remarks
The SetInputValues() method calls this method. You must override OnSetInputValues() if you want to override the functionality of SetInputValues().
.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
SetInputValues()