Generator.OutputKey Property

Gets or sets the key that is used to retrieve output values.

Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)

Syntax

'Declaration
Public Property OutputKey As String
'Usage
Dim instance As Generator
Dim value As String

value = instance.OutputKey

instance.OutputKey = value
public string OutputKey { get; set; }
public:
property String^ OutputKey {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_OutputKey ()

/** @property */
public void set_OutputKey (String value)
public function get OutputKey () : String

public function set OutputKey (value : String)

Property Value

A string that contains the key that is used to retrieve output values.

Remarks

The OutputKey corresponds to the Key of the OutputDescriptor.

A data generator can have more than one output property. For example, a data bound generator might return more than one column from a data source. The OutputKey determines which output property to use to retrieve the data.

This property is decorated with the InputAttribute and the AutoAssignedInput named parameter.

See Also

Reference

Generator Class
Generator Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
GeneratorAttribute
GeneratorInit
IGenerator
OutputKey

Concepts

An Overview of Data Generator Extensibility
Specifying Details of Data Generation for a Column

Other Resources

Creating Custom Data Generators