當前位置: 首頁>>代碼示例>>C#>>正文


C# DefaultPicoContainer.Stop方法代碼示例

本文整理匯總了C#中PicoContainer.Defaults.DefaultPicoContainer.Stop方法的典型用法代碼示例。如果您正苦於以下問題:C# DefaultPicoContainer.Stop方法的具體用法?C# DefaultPicoContainer.Stop怎麽用?C# DefaultPicoContainer.Stop使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PicoContainer.Defaults.DefaultPicoContainer的用法示例。


在下文中一共展示了DefaultPicoContainer.Stop方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: StartStopStopCausingBarf

 public void StartStopStopCausingBarf()
 {
     DefaultPicoContainer pico = new DefaultPicoContainer();
     pico.Start();
     pico.Stop();
     try
     {
         pico.Stop();
         Assert.Fail("Should have barfed");
     }
     catch (Exception)
     {
         // expected;
     }
 }
開發者ID:smmckay,項目名稱:picocontainer,代碼行數:15,代碼來源:DefaultPicoContainerLifecycleTestCase.cs

示例2: StartStopOfDaemonizedThread

        public void StartStopOfDaemonizedThread()
        {
            DefaultPicoContainer pico = new DefaultPicoContainer();
            pico.RegisterComponentImplementation(typeof (FooRunnable));

            object i = pico.ComponentInstances;
            pico.Start();
            Thread.Sleep(100);
            pico.Stop();

            FooRunnable foo = (FooRunnable) pico.GetComponentInstance(typeof (FooRunnable));
            Assert.AreEqual(1, foo.runCount());
            pico.Start();
            Thread.Sleep(100);
            pico.Stop();
            Assert.AreEqual(2, foo.runCount());
        }
開發者ID:smmckay,項目名稱:picocontainer,代碼行數:17,代碼來源:DefaultPicoContainerLifecycleTestCase.cs

示例3: OnlyStartableComponentsAreInstantiatedOnStart

        public void OnlyStartableComponentsAreInstantiatedOnStart()
        {
            IMutablePicoContainer pico = new DefaultPicoContainer();
            pico.RegisterComponentImplementation("recording", typeof (StringBuilder));
            pico.RegisterComponentImplementation(typeof (A));
            pico.RegisterComponentImplementation(typeof (NotStartable));
            pico.Start();

            pico.Stop();
            pico.Dispose();
            Assert.AreEqual("<AA>!A", pico.GetComponentInstance("recording").ToString());
        }
開發者ID:smmckay,項目名稱:picocontainer,代碼行數:12,代碼來源:DefaultPicoContainerLifecycleTestCase.cs

示例4: StartStopDisposeDisposeCausingBarf

 public void StartStopDisposeDisposeCausingBarf()
 {
     DefaultPicoContainer pico = new DefaultPicoContainer();
     object o = pico.ComponentInstances;
     pico.Start();
     pico.Stop();
     pico.Dispose();
     try
     {
         pico.Dispose();
         Assert.Fail("Should have barfed");
     }
     catch (Exception)
     {
         // expected;
     }
 }
開發者ID:smmckay,項目名稱:picocontainer,代碼行數:17,代碼來源:DefaultPicoContainerLifecycleTestCase.cs

示例5: ComponentsAreStartedBreadthFirstAndStoppedDepthFirst

        public void ComponentsAreStartedBreadthFirstAndStoppedDepthFirst()
        {
            IMutablePicoContainer parent = new DefaultPicoContainer();
            parent.RegisterComponentImplementation("recording", typeof (StringBuilder));
            parent.RegisterComponentImplementation(typeof (A));
            IMutablePicoContainer child = parent.MakeChildContainer();
            child.RegisterComponentImplementation(typeof (B));
            parent.Start();
            parent.Stop();

            Assert.AreEqual("<A<BB>A>", parent.GetComponentInstance("recording").ToString());
        }
開發者ID:smmckay,項目名稱:picocontainer,代碼行數:12,代碼來源:DefaultPicoContainerLifecycleTestCase.cs


注:本文中的PicoContainer.Defaults.DefaultPicoContainer.Stop方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。