AssemblyResourceLoader Class
Provides an HTTP handler used to load embedded resources from assemblies. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | AssemblyResourceLoader() | Initializes a new instance of the AssemblyResourceLoader class. This constructor supports the ASP.NET infrastructure and is not intended to be used directly from your code. |
| Name | Description | |
|---|---|---|
![]() | 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.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IHttpHandler.ProcessRequest(HttpContext) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see ProcessRequest. |
![]() ![]() | IHttpHandler.IsReusable | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a value that indicates whether another request can reuse the IHttpHandler instance. |
The AssemblyResourceLoader class is an HTTP handler that enables an ASP.NET page or control to load embedded resources, such as client script, images, and data files, from a compiled .NET assembly. For more information on how to embed resources in a .NET assembly, see the documentation for the compiler that you use.
The AssemblyResourceLoader handler responds to requests made to URLs generated by the GetWebResourceUrl method. Before responding to the request, the AssemblyResourceLoader handler ensures that the resource should be available directly over the Web.
The handler responds to requests of the form
WebResource.axd?d=<encrypted identifier>&t=<time stamp value>
where <encryped identifier> uniquely identifies the requested Web resource and <time stamp value> is the time stamp for the requested assembly so that changes to the assembly can be detected and the cached resource invalidated.
This class supports the ASP.NET infrastructure and is not intended to be used directly from your code.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



