Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Affiliates;
///
/// Represents default values related to affiliate services
///
public static partial class NopAffiliateDefaults
{
///
/// Gets a query parameter name to add affiliate friendly name to URL
///
public static string AffiliateQueryParameter => "affiliate";
///
/// Gets a query parameter name to add affiliate identifier to URL
///
public static string AffiliateIdQueryParameter => "affiliateid";
///
/// Gets a max length of affiliate friendly name
///
/// For long URLs we can get the following error:
/// "the specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters",
/// that's why we limit it to 200
public static int FriendlyUrlNameLength => 200;
}