TransformerInfoCollection.Add(TransformerInfo) Method

Definition

Adds a TransformerInfo object to the collection.

public:
 void Add(System::Web::Configuration::TransformerInfo ^ transformerInfo);
public void Add (System.Web.Configuration.TransformerInfo transformerInfo);
member this.Add : System.Web.Configuration.TransformerInfo -> unit
Public Sub Add (transformerInfo As TransformerInfo)

Parameters

transformerInfo
TransformerInfo

A TransformerInfo object to add to the collection.

Exceptions

The TransformerInfo object to add already exists in the collection.

-or-

The collection is read-only.

Examples

The following code example shows how to use the Add method. This code example is part of a larger example provided for the WebPartsSection class.

// Add a Transfomer Info Object to the collection using a constructor.
webPartsSection.Transformers.Add(new TransformerInfo(
    "RowToFilterTransformer",
    "MyCustomTransformers.RowToFilterTransformer"));
' Add a Transfomer Info Object to the collection using a constructor.
webPartsSection.Transformers.Add(New TransformerInfo( _
  "RowToFilterTransformer", _
  "MyCustomTransformers.RowToFilterTransformer"))

Remarks

The collection must not already contain a TransformerInfo object with the same Name property value.

Applies to

See also