Renders any additional content within the
<head> and
</ head> tags of the HTML page.
Namespace: System.Web.UI.MobileControls.Adapters
Assembly: System.Web.Mobile (in system.web.mobile.dll)

Syntax
Visual Basic (Declaration)
Protected Overridable Function RenderExtraHeadElements ( _
writer As HtmlMobileTextWriter _
) As Boolean
Dim writer As HtmlMobileTextWriter
Dim returnValue As Boolean
returnValue = Me.RenderExtraHeadElements(writer)
protected virtual bool RenderExtraHeadElements (
HtmlMobileTextWriter writer
)
protected:
virtual bool RenderExtraHeadElements (
HtmlMobileTextWriter^ writer
)
protected boolean RenderExtraHeadElements (
HtmlMobileTextWriter writer
)
protected function RenderExtraHeadElements (
writer : HtmlMobileTextWriter
) : boolean
Parameters
- writer
The specified text writer.
Return Value
true if any extra head elements were written; otherwise,
false.

Remarks
This method is called twice. On the first call, the writer parameter is a null reference (Nothing in Visual Basic), and the method returns true or false, indicating whether or not it has additional head elements to write. On the second call, the method writes the content by using the provided writer.

Platforms
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information
.NET Framework
Supported in: 2.0, 1.1

See Also