Webiant Logo Webiant Logo
  1. No results found.

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

PluginConfig.cs

namespace Nop.Core.Configuration;

/// 
/// Represents plugin configuration parameters
/// 
public partial class PluginConfig : IConfig
{
    /// 
    /// Gets or sets a value indicating whether to load an assembly into the load-from context, bypassing some security checks.
    /// 
    public bool UseUnsafeLoadAssembly { get; set; } = true;
}