Search Results for

    Show / Hide Table of Contents

    Services

    The most basic communication with Core is to connect to the available services and invoke operations on them. To do that you use the CreateChannel method of the Client and pass the service interface as type parameter to the method. The service interfaces are defined in the ImageVault.Common.Services namespace. Below follows an example on how to retrieve a service proxy and invoke methods on it.

    var mediaService = client.CreateChannel<IMediaService>();
    mediaService.DeleteMediaItem(4);
    
    In This Article
    Back to top (c) Meriworks 2002-2022