TransformerInfo Constructor (String, String)

 

Initializes a new instance of the TransformerInfo class with the specified name and type reference.

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

public TransformerInfo(
	string name,
	string type
)

Parameters

name
Type: System.String

The name of this transformer type.

type
Type: System.String

A reference to a type that extends the transformer WebPartTransformer class.

The configuration system does not validate the specified type to ensure that a valid type name is used.

The following code example shows how to use the TransformerInfo(String, String) constructor. 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: