19 lines
499 B
C#
19 lines
499 B
C#
namespace Nop.Services.Helpers;
|
|
|
|
/// <summary>
|
|
/// User agent helper interface
|
|
/// </summary>
|
|
public partial interface IUserAgentHelper
|
|
{
|
|
/// <summary>
|
|
/// Get a value indicating whether the request is made by search engine (web crawler)
|
|
/// </summary>
|
|
/// <returns>Result</returns>
|
|
bool IsSearchEngine();
|
|
|
|
/// <summary>
|
|
/// Get a value indicating whether the request is made by mobile device
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
bool IsMobileDevice();
|
|
} |