Compartilhar via


WebPartVerbCollection Construtores

Definição

Inicializa uma nova instância da classe WebPartVerbCollection.

Sobrecargas

WebPartVerbCollection()

Inicializa uma nova instância da classe WebPartVerbCollection.

WebPartVerbCollection(ICollection)

Inicializa uma nova instância da classe WebPartVerbCollection usando a coleção especificada.

WebPartVerbCollection(WebPartVerbCollection, ICollection)

Inicializa uma nova instância da classe WebPartVerbCollection usando as coleções especificadas.

WebPartVerbCollection()

Inicializa uma nova instância da classe WebPartVerbCollection.

public:
 WebPartVerbCollection();
public WebPartVerbCollection ();
Public Sub New ()

Comentários

Esse construtor cria um WebPartVerbCollection objeto vazio. Para criar uma nova instância do WebPartVerbCollection usando uma coleção existente de verbos de Web Parts, você pode usar WebPartVerbCollection(ICollection) .

Aplica-se a

WebPartVerbCollection(ICollection)

Inicializa uma nova instância da classe WebPartVerbCollection usando a coleção especificada.

public:
 WebPartVerbCollection(System::Collections::ICollection ^ verbs);
public WebPartVerbCollection (System.Collections.ICollection verbs);
new System.Web.UI.WebControls.WebParts.WebPartVerbCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.WebPartVerbCollection
Public Sub New (verbs As ICollection)

Parâmetros

verbs
ICollection

Um objeto derivado da ICollection que contém um conjunto de verbos de Web Parts.

Comentários

Esse construtor cria uma instância do WebPartVerbCollection usando a coleção de verbos especificada. Essa coleção pode ser qualquer objeto derivado de ICollection que contenha um conjunto de verbos Web Parts.

Aplica-se a

WebPartVerbCollection(WebPartVerbCollection, ICollection)

Inicializa uma nova instância da classe WebPartVerbCollection usando as coleções especificadas.

public:
 WebPartVerbCollection(System::Web::UI::WebControls::WebParts::WebPartVerbCollection ^ existingVerbs, System::Collections::ICollection ^ verbs);
public WebPartVerbCollection (System.Web.UI.WebControls.WebParts.WebPartVerbCollection existingVerbs, System.Collections.ICollection verbs);
new System.Web.UI.WebControls.WebParts.WebPartVerbCollection : System.Web.UI.WebControls.WebParts.WebPartVerbCollection * System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.WebPartVerbCollection
Public Sub New (existingVerbs As WebPartVerbCollection, verbs As ICollection)

Parâmetros

existingVerbs
WebPartVerbCollection

Um WebPartVerbCollection existente.

verbs
ICollection

Um objeto derivado da ICollection que contém um conjunto de verbos de Web Parts.

Comentários

Esse construtor pode ser usado para combinar duas Web Parts coleções de verbos.

Aplica-se a