ModulePropertiesPage.GetProperties Method
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.
When overridden in a derived class, gets the custom properties for the page.
protected:
abstract Microsoft::Web::Management::Server::PropertyBag ^ GetProperties();
protected abstract Microsoft.Web.Management.Server.PropertyBag GetProperties ();
abstract member GetProperties : unit -> Microsoft.Web.Management.Server.PropertyBag
Protected MustOverride Function GetProperties () As PropertyBag
Returns
The custom properties for the page.
Examples
The following example implements this method to use a Microsoft.Web.Management.Client.ModuleServiceProxy object to get the custom settings.
protected override PropertyBag GetProperties() {
return ServiceProxy.GetCustomSettings();
}
Remarks
The base class calls this method when the user navigates to the page.