ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports Namespace / DefaultResourceLocator Class
Members

In This Topic
    DefaultResourceLocator Class
    In This Topic
    Represents a default implementation of ResourceLocator class.
    Object Model
    DefaultResourceLocator Class
    Syntax
    'Declaration
     
    Public NotInheritable Class DefaultResourceLocator 
       Inherits ResourceLocator
    public sealed class DefaultResourceLocator : ResourceLocator 
    Remarks

    Provides the following URI schemes for locating the resources:

    URI scheme Description
    file URI scheme for locating files on a local computer or local network (e.g. "file://localhost/etc/example.txt").
    http URI scheme for locating resources on a web server using HTTP protocol (e.g. "http://example.com/example.xml")
    https URI scheme for locating resources on a web server using HTTPS protocol (e.g. "https://example.com/example.png")
    data URI scheme indicating that the URI contains a resource bytes converted in Base64 string (e.g. "data:TXkgdGV4dA==...").
    res URI scheme for locating a resources from assembly using an assembly name and resource name (e.g. "res:myassemblyname/resources.textboxlocalization").
    theme URI scheme for locating an image from the current attached theme using a name of the image (e.g. "theme:Logo").
    embeddedimage URI scheme for locating an embedded image using a name of the image (e.g. "embeddedimage:MyEmbeddedImage").

    This class should not be used directly in application code. It is designed for internal operations within the product libraries and may change or be removed in future versions without notice.

    Inheritance Hierarchy

    System.Object
       GrapeCity.ActiveReports.ResourceLocator
          GrapeCity.ActiveReports.DefaultResourceLocator

    See Also