ExtractTemplateValuesMethod Delegate
.NET Framework 2.0
This delegate 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.UIAssembly: System.Web (in system.web.dll)
'Declaration Public Delegate Function ExtractTemplateValuesMethod ( _ control As Control _ ) As IOrderedDictionary 'Usage Dim instance As New ExtractTemplateValuesMethod(AddressOf HandlerMethod)
/** @delegate */ public delegate IOrderedDictionary ExtractTemplateValuesMethod ( Control control )
Not applicable.
Parameters
- 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 method.
Return Value
An IOrderedDictionary of name/value pairs used in two-way, templated data-binding scenarios between ASP.NET data-bound controls and data source controls.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.
Community Additions
ADD
Show: