WebPartManager.Internals Property
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.
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
Property Value
A WebPartManagerInternals, through which a WebPartManager can reference the various methods that have been separated into the WebPartManagerInternals.
Remarks
The Internals property exposes the APIs to call into a set of WebPartManager methods that are used mostly in extensibility cases.
The designed way to use these internal methods is to access them through the Internals property. 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.
Note
This property is hidden from IntelliSense in Microsoft Visual Studio 2005. However, in a derived WebPartManager class, you can still access the property and its various members.