IWebFormReferenceManager Interface

Definition

Caution

The recommended alternative is System.Web.UI.Design.WebFormsReferenceManager. The WebFormsReferenceManager contains additional functionality and allows for more extensibility. To get the WebFormsReferenceManager use the RootDesigner.ReferenceManager property from your ControlDesigner. http://go.microsoft.com/fwlink/?linkid=14202

Provides an interface that can look up information about the types used in the current Web Forms project.

public interface class IWebFormReferenceManager
public interface IWebFormReferenceManager
[System.Obsolete("The recommended alternative is System.Web.UI.Design.WebFormsReferenceManager. The WebFormsReferenceManager contains additional functionality and allows for more extensibility. To get the WebFormsReferenceManager use the RootDesigner.ReferenceManager property from your ControlDesigner. http://go.microsoft.com/fwlink/?linkid=14202")]
public interface IWebFormReferenceManager
type IWebFormReferenceManager = interface
[<System.Obsolete("The recommended alternative is System.Web.UI.Design.WebFormsReferenceManager. The WebFormsReferenceManager contains additional functionality and allows for more extensibility. To get the WebFormsReferenceManager use the RootDesigner.ReferenceManager property from your ControlDesigner. http://go.microsoft.com/fwlink/?linkid=14202")>]
type IWebFormReferenceManager = interface
Public Interface IWebFormReferenceManager
Attributes

Remarks

Note

The IWebFormReferenceManager interface is obsolete. Use the WebFormsReferenceManager class for equivalent designer functionality.

A Web Forms document designer must implement this interface. Implementing this interface enables a designer to manage references and provide information related to Web Forms controls within the project.

Methods

GetObjectType(String, String)

Gets the type of the specified object.

GetRegisterDirectives()

Gets the register directives for the current project.

GetTagPrefix(Type)

Gets the tag prefix for the specified type of object.

Applies to

See also