Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Security;
///
/// Represents default values related to robots.txt
///
public partial class RobotsTxtDefaults
{
///
/// Gets a name of custom robots file
///
public static string RobotsFileName => "robots.txt";
///
/// Gets a name of custom robots file
///
public static string RobotsCustomFileName => "robots.custom.txt";
///
/// Gets a name of robots additions file
///
public static string RobotsAdditionsFileName => "robots.additions.txt";
}