當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET ChannelManagerService構造函數代碼示例

本文整理匯總了VB.NET中System.Workflow.Runtime.Hosting.ChannelManagerService.ChannelManagerService構造函數的典型用法代碼示例。如果您正苦於以下問題:VB.NET ChannelManagerService構造函數的具體用法?VB.NET ChannelManagerService怎麽用?VB.NET ChannelManagerService使用的例子?那麽, 這裏精選的構造函數代碼示例或許可以為您提供幫助。


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

示例1: ChannelManagerService

' Add ChannelManager.
Dim channelmgr As New ChannelManagerService()
workflowRuntime.AddService(channelmgr)
開發者ID:VB.NET開發者,項目名稱:System.Workflow.Runtime.Hosting,代碼行數:3,代碼來源:ChannelManagerService

示例2: ChannelManagerService

contextFileName = localServiceHost.Description.ServiceType.Name & contextFileExtension

' add local client endpoints.
workflowRuntime = Me.Description.Behaviors.Find(Of WorkflowRuntimeBehavior)().WorkflowRuntime
workflowRuntime.AddService(New ChannelManagerService(localServiceHost.ClientEndpoints))

localServiceHost.Open()
開發者ID:VB.NET開發者,項目名稱:System.Workflow.Runtime.Hosting,代碼行數:7,代碼來源:ChannelManagerService

示例3: NameValueCollection

Dim parameters As New NameValueCollection()
With parameters
    .Add("idleTimeout", TimeSpan.FromMinutes(10).ToString())
    .Add("leaseTimeout", TimeSpan.FromMinutes(1).ToString())
    .Add("maxIdleChannelsPerEndpoint", "10")
End With
Dim service As New ChannelManagerService(parameters)
開發者ID:VB.NET開發者,項目名稱:System.Workflow.Runtime.Hosting,代碼行數:7,代碼來源:ChannelManagerService

示例4: ChannelPoolSettings

Dim settings As New ChannelPoolSettings()
With settings
    .IdleTimeout = TimeSpan.FromMinutes(10)
    .LeaseTimeout = TimeSpan.FromMinutes(1)
    .MaxOutboundChannelsPerEndpoint = 10
End With
Dim service As New ChannelManagerService(settings)
開發者ID:VB.NET開發者,項目名稱:System.Workflow.Runtime.Hosting,代碼行數:7,代碼來源:ChannelManagerService

示例5: ChannelPoolSettings

Dim settings As New ChannelPoolSettings()
With settings
    settings.IdleTimeout = TimeSpan.FromMinutes(10)
    settings.LeaseTimeout = TimeSpan.FromMinutes(1)
    settings.MaxOutboundChannelsPerEndpoint = 10
End With
Dim endpoints As IList(Of ServiceEndpoint) = New List(Of ServiceEndpoint)()
endpoints.Add(New ServiceEndpoint(contractDescription))
Dim service As New ChannelManagerService(settings, endpoints)
開發者ID:VB.NET開發者,項目名稱:System.Workflow.Runtime.Hosting,代碼行數:9,代碼來源:ChannelManagerService


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