ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.DataProviders Namespace / MarkupImageDataProvider Class / ArtMiddleware Property




In This Topic
    ArtMiddleware Property
    In This Topic
    The MarkupArtMiddleware for this Data Provider. Markup Art Middleware gives the Developer a simple way of intercepting and controlling data flow between the client viewer and ImageGear.Web back-end without having to fully implement their own Data Provider. MarkupArtMiddleware. If implementing your own MarkupImageDataProvider, you will have to call base.Initialize() in the derived implementation for this property to be set. Furthermore, It is up to the I/O methods of the Data Provider to respect and call the Middleware methods if middlware is specified.
    Syntax
    'Declaration
     
    Public ReadOnly Property ArtMiddleware As MarkupArtMiddleware
    'Usage
     
    Dim instance As MarkupImageDataProvider
    Dim value As MarkupArtMiddleware
     
    value = instance.ArtMiddleware
    public MarkupArtMiddleware ArtMiddleware {get;}
    public: __property MarkupArtMiddleware* get_ArtMiddleware();
    public:
    property MarkupArtMiddleware^ ArtMiddleware {
       MarkupArtMiddleware^ get();
    }
    Remarks
    If implementing your own MarkupImageDataProvider, you will have to call base.Initialize() in the derived implementation for this property to be set. Furthermore, It is up to the I/O methods of the Data Provider to respect and call the Middleware methods if middlware is specified.
    See Also