ExtractTemplateValuesMethod Delegate

Definition

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.

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

public delegate System::Collections::Specialized::IOrderedDictionary ^ ExtractTemplateValuesMethod(Control ^ control);
public delegate System.Collections.Specialized.IOrderedDictionary ExtractTemplateValuesMethod(Control control);
type ExtractTemplateValuesMethod = delegate of Control -> IOrderedDictionary
Public Delegate Function ExtractTemplateValuesMethod(control As Control) As IOrderedDictionary 

Parameters

control
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 ExtractValues(Control) 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.

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.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also