Generator.OnSetInputValues Method
Sets the input values for a data generator.
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 function OnSetInputValues(
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 default functionality of SetInputValues reads the key name, finds the corresponding property, and sets the value of the property.
The SetInputValues method calls this method. You should override OnSetInputValues if you want to override the SetInputValues functionality.
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
Other Resources
Creating Custom Data Generators