Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Defines the data generator contract.
Namespace: Microsoft.VisualStudio.TeamSystem.Data.DataGenerator
Assembly: Microsoft.VisualStudio.TeamSystem.Data (in microsoft.visualstudio.teamsystem.data.dll)
Syntax
'Declaration
<CLSCompliantAttribute(True)> _
Public Interface IGenerator
Inherits IDisposable
'Usage
Dim instance As IGenerator
[CLSCompliantAttribute(true)]
public interface IGenerator : IDisposable
[CLSCompliantAttribute(true)]
public interface class IGenerator : IDisposable
/** @attribute CLSCompliantAttribute(true) */
public interface IGenerator extends IDisposable
CLSCompliantAttribute(true)
public interface IGenerator extends IDisposable
Remarks
If the standard data generators are insufficient, you can create custom data generators. To create a custom data generator, you must create a class that implements IGenerator or inherits from Generator. You identify the class as a data generator by decorating it with GeneratorAttribute.
You can create a custom designer for a custom data generator, or you can use DefaultGeneratorDesigner. For more information, see An Overview of Data Generator Extensibility.
See Also
Tasks
How to: Create Custom Data Generators
Reference
IGenerator Members
Microsoft.VisualStudio.TeamSystem.Data.DataGenerator Namespace
Generator Class
GeneratorAttribute Class
GeneratorInit Class