TransformerInfo Class
.NET Framework 3.0
Specifies a custom class that extends the WebPartTransformer class for use by Web Part connections.
Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following configuration file excerpt shows how to declaratively specify values for several properties of the TransformerInfo class.
<system.web>
<webParts>
<transformers>
<add name="RowToFieldTransformer"
type="System.Web.UI.WebControls.WebParts.RowToFieldTransformer" />
<add name="RowToFilterTransformer"
type="System.Web.UI.WebControls.WebParts.RowToFilterTransformer" />
<add name="RowToParametersTransformer"
type="System.Web.UI.WebControls.WebParts.RowToParametersTransformer" />
</transformers>
</webParts>
</system.web>
The following code example shows how to use the TransformerInfo class. This code example is part of a larger example provided for the WebPartsSection class.
Community Additions
ADD
Show: