ModulePropertiesPage.GetProperties Method

Definition

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.

Applies to