TransformerInfo.Type Property

Definition

Gets or sets the type reference for a class that extends the WebPartTransformer class.

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("type", DefaultValue="", IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Type { get; set; }
[<System.Configuration.ConfigurationProperty("type", DefaultValue="", IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Type : string with get, set
Public Property Type As String

Property Value

A type reference for a class that extends the WebPartTransformer class.

Attributes

Examples

The following code example shows how to use the Type property. This code example is part of a larger example provided for the WebPartsSection type.

Remarks

The configuration system does not validate the specified type to ensure that a valid type name is used. However, invalid types will cause exceptions when Web pages are loaded.

Applies to

See also