Ejemplo n.º 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="InstallationCheckModule"/> class.
        /// </summary>
        public InstallationCheckModule(IInstallationManager installationManager, LazyNotNull <HostInfo> hostInfo)
        {
            if (installationManager == null)
            {
                throw new ArgumentNullException("installationManager");
            }
            if (hostInfo == null)
            {
                throw new ArgumentNullException("hostInfo");
            }

            InstallationManager = installationManager;
            _hostInfo           = hostInfo;
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="InstallationCheckModule"/> class.
        /// </summary>
        public InstallationCheckModule(IInstallationManager installationManager, LazyNotNull<HostInfo> hostInfo)
        {
            if (installationManager == null)
            {
                throw new ArgumentNullException("installationManager");
            }
            if (hostInfo == null)
            {
                throw new ArgumentNullException("hostInfo");
            }

            InstallationManager = installationManager;
            _hostInfo = hostInfo;
        }
Ejemplo n.º 3
0
 public OpmlHandler(ISubtextContext subtextContext, OpmlWriter writer, LazyNotNull<HostInfo> hostInfo)
     : base(subtextContext)
 {
     OpmlWriter = writer;
     _hostInfo = hostInfo;
 }
Ejemplo n.º 4
0
 public BlogLookupService(ObjectRepository repository, LazyNotNull<HostInfo> hostInfo)
 {
     Repository = repository;
     _hostInfo = hostInfo;
 }
Ejemplo n.º 5
0
 public OpmlHandler(ISubtextContext subtextContext, OpmlWriter writer, LazyNotNull <HostInfo> hostInfo)
     : base(subtextContext)
 {
     OpmlWriter = writer;
     _hostInfo  = hostInfo;
 }