Webiant Logo Webiant Logo
  1. No results found.

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

IUserAgentHelper.cs

namespace Nop.Services.Helpers;

/// 
/// User agent helper interface
/// 
public partial interface IUserAgentHelper
{
    /// 
    /// Get a value indicating whether the request is made by search engine (web crawler)
    /// 
    /// Result
    bool IsSearchEngine();

    /// 
    /// Get a value indicating whether the request is made by mobile device
    /// 
    /// 
    bool IsMobileDevice();
}