WebPartManager.Internals Propriedade

Definição

Obtém uma referência à classe WebPartManagerInternals, que é usada para combinar e separar um conjunto de métodos que estão, na verdade, implementados na classe WebPartManager, mas geralmente são úteis para os desenvolvedores de controle.Gets a reference to the WebPartManagerInternals class, which is used to combine and separate a set of methods that are actually implemented in the WebPartManager class, but are mostly useful for control developers.

protected:
 property System::Web::UI::WebControls::WebParts::WebPartManagerInternals ^ Internals { System::Web::UI::WebControls::WebParts::WebPartManagerInternals ^ get(); };
protected System.Web.UI.WebControls.WebParts.WebPartManagerInternals Internals { get; }
member this.Internals : System.Web.UI.WebControls.WebParts.WebPartManagerInternals
Protected ReadOnly Property Internals As WebPartManagerInternals

Valor da propriedade

WebPartManagerInternals

R WebPartManagerInternals , por meio do qual um WebPartManager pode referenciar os vários métodos que foram separados no WebPartManagerInternals .A WebPartManagerInternals, through which a WebPartManager can reference the various methods that have been separated into the WebPartManagerInternals.

Comentários

A Internals Propriedade expõe as APIs para chamar um conjunto de WebPartManager métodos que são usados principalmente em casos de extensibilidade.The Internals property exposes the APIs to call into a set of WebPartManager methods that are used mostly in extensibility cases.

A maneira projetada de usar esses métodos internos é acessá-los por meio da Internals propriedade.The designed way to use these internal methods is to access them through the Internals property. Como a propriedade é protegida, você só pode acessá-la e chamar os métodos dentro de uma instância da WebPartManagerInternals classe herdando da WebPartManager classe.Because the property is protected, you can only access it and call the methods within an instance of the WebPartManagerInternals class by inheriting from the WebPartManager class.

Observação

Essa propriedade é oculta do IntelliSense no Microsoft Visual Studio 2005.This property is hidden from IntelliSense in Microsoft Visual Studio 2005. No entanto, em uma WebPartManager classe derivada, você ainda pode acessar a propriedade e seus vários membros.However, in a derived WebPartManager class, you can still access the property and its various members.

Aplica-se a