Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IThemeContext.cs

namespace Nop.Web.Framework.Themes;

/// 
/// Represents a theme context
/// 
public partial interface IThemeContext
{
    /// 
    /// Get current theme system name
    /// 
    /// A task that represents the asynchronous operation
    Task GetWorkingThemeNameAsync();

    /// 
    /// Set current theme system name
    /// 
    /// A task that represents the asynchronous operation
    Task SetWorkingThemeNameAsync(string workingThemeName);
}