WebPartVerbCollection Construtores

Definição

Inicializa uma nova instância da WebPartVerbCollection classe.

Sobrecargas

Name Description
WebPartVerbCollection()

Inicializa uma nova instância da WebPartVerbCollection classe.

WebPartVerbCollection(ICollection)

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

WebPartVerbCollection(WebPartVerbCollection, ICollection)

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

WebPartVerbCollection()

Inicializa uma nova instância da WebPartVerbCollection classe.

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

Observações

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

Aplica-se a

WebPartVerbCollection(ICollection)

Inicializa uma nova instância da WebPartVerbCollection classe 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 disso ICollection contém um conjunto de verbos Web Parts.

Observações

Este construtor cria uma instância de WebPartVerbCollection usando a coleção de verbos especificada. Esta 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 WebPartVerbCollection classe 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

verbs
ICollection

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

Observações

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

Aplica-se a