ExtractTemplateValuesMethod Delegate (System.Web.UI)

Switch View :
ScriptFree
.NET Framework Class Library
ExtractTemplateValuesMethod Delegate

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Provides a delegate with which ASP.NET extracts a set of name/value pairs from an IBindableTemplate object at run time. This class cannot be inherited.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic (Declaration)
Public Delegate Function ExtractTemplateValuesMethod ( _
	control As Control _
) As IOrderedDictionary
Visual Basic (Usage)
Dim instance As New ExtractTemplateValuesMethod(AddressOf HandlerMethod)
C#
public delegate IOrderedDictionary ExtractTemplateValuesMethod(
	Control control
)
Visual C++
public delegate IOrderedDictionary^ ExtractTemplateValuesMethod(
	Control^ control
)
JScript
JScript does not support delegates.

Parameters

control
Type: System.Web.UI.Control
The Control from which to extract name/value pairs, which are passed by the data-bound control to an associated data source control in two-way data-binding scenarios. This parameter corresponds to the control parameter passed by the IBindableTemplate.ExtractValues(Control) method.

Return Value

Type: System.Collections.Specialized.IOrderedDictionary
An IOrderedDictionary of name/value pairs used in two-way, templated data-binding scenarios between ASP.NET data-bound controls and data source controls.
Remarks

The ExtractTemplateValuesMethod delegate is used by ASP.NET and is not meant to be used directly from your code.

This delegate is used by the CompiledBindableTemplateBuilder class, which is the default implementation of the IBindableTemplate interface that ASP.NET generates when the ASP.NET parser encounters two-way data-binding within templated content.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Other Resources