TransformerInfoCollection.Add Method (TransformerInfo)

 

Adds a TransformerInfo object to the collection.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

public void Add(
	TransformerInfo transformerInfo
)

Parameters

transformerInfo
Type: System.Web.Configuration.TransformerInfo

A TransformerInfo object to add to the collection.

Exception Condition
ConfigurationException

The TransformerInfo object to add already exists in the collection.

- or -

The collection is read-only.

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

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"));

.NET Framework
Available since 2.0
Return to top
Show: