Webiant Logo Webiant Logo
  1. No results found.

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

ExportImportDefaults.cs

namespace Nop.Services.ExportImport;

/// 
/// Represents default values related to Export/Import features
/// 
public static partial class ExportImportDefaults
{
    /// 
    /// Gets the name of the default hash algorithm
    /// 
    /// 
    /// SHA512 - it's quite fast hash (to cheaply distinguish between objects)
    /// 
    public static string ImageHashAlgorithm => "SHA512";

    /// 
    /// Gets the path to temporary files
    /// 
    public static string UploadsTempPath => "~/App_Data/TempUploads";
}