VintaSoft Imaging .NET SDK 14.0: Documentation for Web developer
Vintasoft.Imaging.Web.Services Namespace / VintasoftImageWebService Class / VintasoftImageWebService Constructors / VintasoftImageWebService Constructor(IDataStorage,IDataStorage,ImageTilesCacheManager)
Syntax Remarks Requirements SeeAlso
In This Topic
    VintasoftImageWebService Constructor(IDataStorage,IDataStorage,ImageTilesCacheManager)
    In This Topic
    Initializes a new instance of the VintasoftImageWebService 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 ImageTilesCacheManager _
    )
    public VintasoftImageWebService(
    Vintasoft.Data.IDataStorage sessionDataStorage,
    Vintasoft.Data.IDataStorage globalResourcesDataStorage,
    ImageTilesCacheManager imageTilesCacheManager
    )
    public: VintasoftImageWebService(
    Vintasoft.Data.IDataStorage sessionDataStorage,
    Vintasoft.Data.IDataStorage globalResourcesDataStorage,
    ImageTilesCacheManager* imageTilesCacheManager
    )
    public:
    VintasoftImageWebService(
    Vintasoft.Data.IDataStorage sessionDataStorage,
    Vintasoft.Data.IDataStorage globalResourcesDataStorage,
    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