Webiant Logo Webiant Logo
  1. No results found.

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

BaseSingleton.cs

namespace Nop.Core.Infrastructure;

/// 
/// Provides access to all "singletons" stored by .
/// 
public partial class BaseSingleton
{
    static BaseSingleton()
    {
        AllSingletons = new Dictionary();
    }

    /// 
    /// Dictionary of type to singleton instances.
    /// 
    public static IDictionary AllSingletons { get; }
}