Generator.Seed Property
Gets or sets the seed. You can use the seed to initialize a deterministic random data generation algorithm.
Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)
Syntax
'Declaration
Public Property Seed As Integer
'Usage
Dim instance As Generator
Dim value As Integer
value = instance.Seed
instance.Seed = value
public int Seed { get; set; }
public:
property int Seed {
int get ();
void set (int value);
}
/** @property */
public int get_Seed ()
/** @property */
public void set_Seed (int value)
public function get Seed () : int
public function set Seed (value : int)
Property Value
An integer that contains the seed.
Remarks
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
Seed
Concepts
An Overview of Data Generator Extensibility
Specifying Details of Data Generation for a Column