BuildMethod Delegate

Definition

Represents the method that is used to build a control.

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

public delegate System::Web::UI::Control ^ BuildMethod();
public delegate System.Web.UI.Control BuildMethod();
type BuildMethod = delegate of unit -> Control
Public Delegate Function BuildMethod() As Control 

Return Value

The built control.

Remarks

The BuildMethod delegate passes the information that is required to build ASP.NET server controls. The information is defined by the TemplateControl class or a class that is derived from the TemplateControl class.

Extension Methods

GetMethodInfo(Delegate)

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

Applies to

See also