Table of Contents

Interface IContentService

Namespace
Quilt4Net.Toolkit.Features.Content
Assembly
Quilt4Net.Toolkit.dll
public interface IContentService

Methods

ClearCacheAsync()

Task ClearCacheAsync()

Returns

Task

GetContentAsync(string, string, Guid, ContentFormat?, string)

Task<(string Value, bool Success)> GetContentAsync(string key, string defaultValue, Guid languageKey, ContentFormat? contentType, string application = null)

Parameters

key string
defaultValue string
languageKey Guid
contentType ContentFormat?
application string

Returns

Task<(string Value, bool Success)>

SetContentAsync(string, string, Guid, ContentFormat, string)

Task SetContentAsync(string key, string value, Guid languageKey, ContentFormat contentType, string application = null)

Parameters

key string
value string
languageKey Guid
contentType ContentFormat
application string

Returns

Task