TransformerTypeCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the TransformerTypeCollection class.
Overloads
TransformerTypeCollection() |
Initializes a new instance of the TransformerTypeCollection class with no members in the collection. |
TransformerTypeCollection(ICollection) |
Initializes a new instance of the TransformerTypeCollection class containing the specified WebPartTransformer objects. |
TransformerTypeCollection(TransformerTypeCollection, ICollection) |
Initializes a new instance of the TransformerTypeCollection class by combining an existing TransformerTypeCollection collection with the specified WebPartTransformer objects. |
TransformerTypeCollection()
Initializes a new instance of the TransformerTypeCollection class with no members in the collection.
public:
TransformerTypeCollection();
public TransformerTypeCollection ();
Public Sub New ()
Applies to
TransformerTypeCollection(ICollection)
Initializes a new instance of the TransformerTypeCollection class containing the specified WebPartTransformer objects.
public:
TransformerTypeCollection(System::Collections::ICollection ^ transformerTypes);
public TransformerTypeCollection (System.Collections.ICollection transformerTypes);
new System.Web.UI.WebControls.WebParts.TransformerTypeCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.TransformerTypeCollection
Public Sub New (transformerTypes As ICollection)
Parameters
- transformerTypes
- ICollection
A collection of WebPartTransformer objects.
Exceptions
transformerTypes
contains objects that are not transformers.
Applies to
TransformerTypeCollection(TransformerTypeCollection, ICollection)
Initializes a new instance of the TransformerTypeCollection class by combining an existing TransformerTypeCollection collection with the specified WebPartTransformer objects.
public:
TransformerTypeCollection(System::Web::UI::WebControls::WebParts::TransformerTypeCollection ^ existingTransformerTypes, System::Collections::ICollection ^ transformerTypes);
public TransformerTypeCollection (System.Web.UI.WebControls.WebParts.TransformerTypeCollection existingTransformerTypes, System.Collections.ICollection transformerTypes);
new System.Web.UI.WebControls.WebParts.TransformerTypeCollection : System.Web.UI.WebControls.WebParts.TransformerTypeCollection * System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.TransformerTypeCollection
Public Sub New (existingTransformerTypes As TransformerTypeCollection, transformerTypes As ICollection)
Parameters
- existingTransformerTypes
- TransformerTypeCollection
A collection of WebPartTransformer objects already contained in a TransformerTypeCollection.
- transformerTypes
- ICollection
A collection of WebPartTransformer objects to combine with the collection in the existingTransformerTypes
parameter.
Exceptions
transformerTypes
contains objects that are not transformers.
Applies to
.NET