VintaSoft Imaging .NET SDK 14.0: Documentation for Web developer
Vintasoft.Imaging.Pdf.Web.Services Namespace / VintasoftPdfWebService Class / VintasoftPdfWebService Constructors / VintasoftPdfWebService Constructor(IDataStorage,IDataStorage,ImageTilesCacheManager)
Syntax Remarks Requirements SeeAlso
In This Topic
    VintasoftPdfWebService Constructor(IDataStorage,IDataStorage,ImageTilesCacheManager)
    In This Topic
    Initializes a new instance of the VintasoftPdfWebService class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal sessionDataStorage
    A data storage that stores images.
    As Vintasoft.Data.IDataStorage, _
    ByVal globalResourcesDataStorage
    A data storage that stores global resources.
    As Vintasoft.Data.IDataStorage, _
    ByVal imageTilesCacheManager
    A cache manager that manages cache of image tiles.
    As Vintasoft.Imaging.Web.Services.ImageTilesCacheManager _
    )
    public VintasoftPdfWebService(
    Vintasoft.Data.IDataStorage sessionDataStorage,
    Vintasoft.Data.IDataStorage globalResourcesDataStorage,
    Vintasoft.Imaging.Web.Services.ImageTilesCacheManager imageTilesCacheManager
    )
    public: VintasoftPdfWebService(
    Vintasoft.Data.IDataStorage sessionDataStorage,
    Vintasoft.Data.IDataStorage globalResourcesDataStorage,
    Vintasoft.Imaging.Web.Services.ImageTilesCacheManager* imageTilesCacheManager
    )
    public:
    VintasoftPdfWebService(
    Vintasoft.Data.IDataStorage sessionDataStorage,
    Vintasoft.Data.IDataStorage globalResourcesDataStorage,
    Vintasoft.Imaging.Web.Services.ImageTilesCacheManager^ imageTilesCacheManager
    )

    Parameters

    sessionDataStorage
    A data storage that stores images.
    globalResourcesDataStorage
    A data storage that stores global resources.
    imageTilesCacheManager
    A cache manager that manages cache of image tiles.
    Remarks

    This constructor will create a service, which will not support caching of thumbnails, i.e. all methods that return thumbnail will return thumbnail as a Base64 string.

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7, .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5

    See Also