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


C# InstanceContext.Close方法代碼示例

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


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

示例1: InitializeInstanceContext

		public void InitializeInstanceContext (InstanceContext instanceContext, Message message, IContextChannel channel)
		{
			var key = channel.SessionId ?? String.Empty;
			pool [key] = instanceContext;
			channel.Closed += delegate {
				pool.Remove (key);
				instanceContext.Close (); // FIXME: timeout?
			};
		}
開發者ID:nickchal,項目名稱:pash,代碼行數:9,代碼來源:SessionInstanceContextProvider.cs

示例2: CreateInstanceContext

		InstanceContext CreateInstanceContext (MessageProcessingContext mrc)
		{
			InstanceContext iCtx = null;
			DispatchRuntime dispatchRuntime = mrc.OperationContext.EndpointDispatcher.DispatchRuntime;
			IInstanceContextProvider p = dispatchRuntime.InstanceContextProvider;

			if (p != null) {
				iCtx = p.GetExistingInstanceContext (mrc.IncomingMessage, mrc.OperationContext.Channel);
			}
			if (iCtx == null) {
				ServiceHostBase host = dispatchRuntime.ChannelDispatcher.Host;
				iCtx = new InstanceContext (dispatchRuntime.ChannelDispatcher.Host, null, false);
				// FIXME: could be easier way to identify session channel
				if ((mrc.Channel is ISessionChannel<IInputSession> || mrc.Channel is ISessionChannel<IDuplexSession>) && host.Description.Behaviors.Find<ServiceBehaviorAttribute> ().InstanceContextMode == InstanceContextMode.PerSession)
					mrc.Channel.Closed += delegate { iCtx.Close (); };
			}

			iCtx.InstanceManager = new InstanceManager (dispatchRuntime);
			return iCtx;
		}		
開發者ID:nickchal,項目名稱:pash,代碼行數:20,代碼來源:InitializingHandler.cs

示例3: Main

        static void Main(string[] args)
        {
            ServiceHost host = null;
            try
            {
                using (host = new ServiceHost(typeof(Test)))
                {
                    host.Open();

                    Thread.Sleep(2500);
                    Console.WriteLine("\npress any key to continue ...\n");
                    Console.ReadLine();

                    var testCallback = new TestCallback();
                    var context = new InstanceContext(testCallback);

                    // action
                    worker(1234567890, "gaga", context);

                    Console.WriteLine("\n+++ press any key to close a ServiceHost +++\n");
                    Console.ReadLine();

                    context.Close();
                    host.Close();
                }
            }
            catch (CommunicationException ex)
            {
                if (host != null)
                    host.Abort();
 
                Console.WriteLine(ex.Message);
                Console.ReadLine();
            }
            catch (Exception ex)
            {
                if (host != null)
                    host.Abort();
   
                Console.WriteLine(ex);
                Console.ReadLine();
            }
            finally
            {
                Console.WriteLine("\n*** press any key to exit ... ***\n");
                Console.ReadLine();
            }

        }
開發者ID:MatthewChudleigh,項目名稱:solipsist,代碼行數:49,代碼來源:Program.cs


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