CompiledBindableTemplateBuilder.ExtractValues(Control) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves a set of name/value pairs for values bound using two-way ASP.NET data-binding syntax within the templated content.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual System::Collections::Specialized::IOrderedDictionary ^ ExtractValues(System::Web::UI::Control ^ container);
public System.Collections.Specialized.IOrderedDictionary ExtractValues (System.Web.UI.Control container);
abstract member ExtractValues : System.Web.UI.Control -> System.Collections.Specialized.IOrderedDictionary
override this.ExtractValues : System.Web.UI.Control -> System.Collections.Specialized.IOrderedDictionary
Public Function ExtractValues (container As Control) As IOrderedDictionary
Parameters
- container
- 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.
Returns
An IOrderedDictionary of name/value pairs. The name represents the name of the data item field specified as the first parameter to bind within templated content. The value is the current value of a property value bound using two-way ASP.NET data-binding syntax.
Implements
Remarks
The ExtractValues method is the CompiledBindableTemplateBuilder class's implementation of the IBindableTemplate.ExtractValues(Control) method.