virtual method to create the Map layers and custom render settings for the request

Namespace:  EGIS.Web.Controls
Assembly:  EGIS.Web.Controls (in EGIS.Web.Controls.dll)

Syntax

Visual Basic
Protected Overridable Sub OnBeginRequest ( _
	context As HttpContext _
)
C#
protected virtual void OnBeginRequest(
	HttpContext context
)
Visual C++
protected:
virtual void OnBeginRequest(
	HttpContext^ context
)
JavaScript
function onBeginRequest(context);

Parameters

context
Type: System.Web..::..HttpContext

Return Value

Remarks

The default method just calls CreateMapLayers(context) and sets renderSettings to null

If you are using custom render settings layers.Count must equal renderSettings.Count. If renderSettings is null then Custom Render settings will not be used. If any items in renbderSettings are null then the corresponding layer will not use CustomRenderSettings

Not used yet!

See Also