Microsoft.VisualStudio.TextTemplating Namespace

The Microsoft.VisualStudio.TextTemplating namespace provides classes for the text template transformation functionality. The text template transformation engine is integrated into Visual Studio, and transforms text template files into generated text output files.

The text template transformation process takes a text template file as the input, performs the transformation on the input, and generates a new text file as the output. The engine component controls the process, and interacts with a text template transformation host and one or more text template directive processors to complete the process. For more information, see Code Generation and T4 Text Templates.

The text template transformation process has two steps. In the first step, the text template transformation engine creates a class that is referred to as the generated transformation class. In the second step, the engine compiles and executes the generated transformation class, to produce the generated text output. The generated transformation class is comprised of the code of the text template, that is, the statements, expressions, class features, and boilerplate text in the text template, and the results of calling directive processors. For more information, see Writing a T4 Text Template.

Advanced users might want to implement their own text template transformation engine host or directive processors. For more information, see:

Classes

  Class Description
Public class AssemblyCacheMonitor Monitors the state of the assembly cache.
Public class DirectiveProcessor The abstract base class for a concrete directive processor.
Public class DirectiveProcessorAttribute
Public class DirectiveProcessorException The exception that is thrown by the text template transformation engine, if an error occurs while processing directives.
Public class EncodingHelper A utility class that gets the encoding of a file from its byte order mark.
Public class Engine The text template transformation engine.
Public class ParameterDirectiveProcessor Directive processor to route simple serializable parameters from callers or the host to the template.
Public class RequiresProvidesDirectiveProcessor The abstract base class for a directive processor that defines and implements a design pattern called requires/provides.
Public class ServiceProviderExtensions Class that contains extensions to IServiceProvider relevant to T4 templates.
Public class ShadowCopyMonitor Monitors the state of shadow-copied assemblies for use by hosts.
Public class SupportedDirectiveAttribute
Public class TextTemplatingSession Trivial implementation of text transformation session interface
Public class TextTransformation The abstract base class for all generated transformation classes. This class also provides utility methods and properties for use in text template code.
Public class ToStringHelper A utility class that is used to produce a culture-specific representation of an Object as a String.
Public class TransformedAllTemplatesEventArgs
Public class TransformingAllTemplatesEventArgs

Interfaces

  Interface Description
Public interface IDebugTextTemplatingEngine
Public interface IDebugTransformationRun
Public interface IDebugTransformationRunFactory
Public interface IDirectiveProcessor Interface for a directive processor.
Public interface IDirectiveProcessorMetadata Metadata provided by DirectiveProcessors. Hosts that want to import DPs via MEF can consume this standard metadata.
Public interface IRecognizeHostSpecific Directive Processors implement this method to obtain the state of the HostSpecific flag in a text template.
Public interface ITextTemplatingEngine The interface for the text template transformation engine.
Public interface ITextTemplatingEngineHost The interface for the host that transforms text templates. This is available to directive processors and can also be accessed by text templates.
Public interface ITextTemplatingOrchestrator
Public interface ITextTemplatingSession Can be used to transmit information from a directive processor into a text template.
Public interface ITextTemplatingSessionHost Implemented by a text templating host, enabling callers to obtain an object denoting the current session. A session represents series of executions of text templates. The session object can be used to pass information from the host into the code of the text template.