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(); }