Interface ISharedDataSourceStorage
Represents a SharedDataSource definition storage.
Assembly: Telerik.WebReportDesigner.Services.dll
Syntax
public interface ISharedDataSourceStorage : IResourceStorage, IAssetsStorage
Methods
Returns the SharedDataSource model at uri
or null if not found.
Declaration
Task<SharedDataSourceModel> GetModelAsync(string uri)
Parameters
System.String
uri
The unique resource identifier (URI) of the resource.
|
Returns
Renames the given SharedDataSourceModel resource.
Declaration
Task<SharedDataSourceModel> RenameAsync(RenameResourceModel model)
Parameters
Returns
Saves the raw data of a SharedDataSourceModel and returns its model.
Declaration
Task<SharedDataSourceModel> SaveAsync(SaveResourceModel model, byte[] resource)
Parameters
SaveResourceModel
model
The model containing the save operation data.
|
System.Byte[]
resource
The contents of the SharedDataSourceModel resource.
|
Returns