IResourceUrlGenerator Interface

Definition

Defines the method that a designer-host must implement to provide URL reference look-up for embedded resources.

public interface class IResourceUrlGenerator
public interface IResourceUrlGenerator
type IResourceUrlGenerator = interface
Public Interface IResourceUrlGenerator

Remarks

ASP.NET version 2.0 provides the ability to retrieve embedded resources from an assembly for controls, such as the Page control. At run time, the URL to the embedded resource can be retrieved using the GetWebResourceUrl method of the ClientScriptManager class. To provide a design-time means for generating a resource URL from an assembly, designer hosts can offer a service that implements the IResourceUrlGenerator interface. For more information:

The IResourceUrlGenerator interface has one method, the GetResourceUrl method, that returns a URL reference to a resource given the resource type and name.

Methods

GetResourceUrl(Type, String)

Returns a URL reference to an embedded resource in an assembly that is used at design time.

Applies to

See also