WebFormsReferenceManager Class
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.
Provides a base class for accessing the types, directives, and controls in the current Web project document. This class must be inherited.
public ref class WebFormsReferenceManager abstract
public abstract class WebFormsReferenceManager
type WebFormsReferenceManager = class
Public MustInherit Class WebFormsReferenceManager
- Inheritance
-
WebFormsReferenceManager
Remarks
The WebFormsReferenceManager base class is implemented by designer hosts to provide access to types, directives, and user controls defined in a Web project document. A control designer class can use the WebFormsReferenceManager to access the definitions in the current document, and to add a new tag prefix to the current document.
You access the WebFormsReferenceManager services supplied by the designer host through the ReferenceManager property of a WebFormsRootDesigner implementation. The WebFormsRootDesigner implementation can be accessed in two ways:
Classes deriving from ControlDesigner can use the RootDesigner property to access a WebFormsRootDesigner implementation supplied by the designer host. The WebFormsReferenceManager implementation is supplied through the ReferenceManager property of RootDesigner property.
Other designer classes can access the WebFormsRootDesigner implementation by first obtaining the IDesignerHost services implementation through the designer component's Site, and then calling the GetDesigner method using the designer host RootComponent property.
Note
WebFormsReferenceManager replaces the obsolete interface IWebFormReferenceManager. Older designer hosts may only support the IWebFormReferenceManager interface implementation. Check that the WebFormsRootDesigner and WebFormsReferenceManager implementations supplied by the designer host are not
null
to ensure the designer host implements the WebFormsRootDesigner and WebFormsReferenceManager classes.
Constructors
WebFormsReferenceManager() |
Initializes a new instance of the WebFormsReferenceManager class. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetRegisterDirectives() |
Gets the register directives for the current project document. |
GetTagPrefix(Type) |
Gets the tag prefix for the specified object type. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
GetType(String, String) |
Gets the object type with the specified tag prefix and tag name. |
GetUserControlPath(String, String) |
Gets the relative URL path for the user control with the specified tag prefix and tag name. |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
RegisterTagPrefix(Type) |
Adds a tag prefix for the specified type. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |