ServiceHostBase 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擴充 ServiceHostBase 類別以實作公開自訂程式撰寫模型的主機。
public ref class ServiceHostBase abstract : System::ServiceModel::Channels::CommunicationObject, IDisposable, System::ServiceModel::IExtensibleObject<System::ServiceModel::ServiceHostBase ^>
public abstract class ServiceHostBase : System.ServiceModel.Channels.CommunicationObject, IDisposable, System.ServiceModel.IExtensibleObject<System.ServiceModel.ServiceHostBase>
type ServiceHostBase = class
inherit CommunicationObject
interface IExtensibleObject<ServiceHostBase>
interface IDisposable
Public MustInherit Class ServiceHostBase
Inherits CommunicationObject
Implements IDisposable, IExtensibleObject(Of ServiceHostBase)
- 繼承
- 衍生
- 實作
範例
這個範例會 ServiceHost 使用 衍生自 ServiceHostBase 的 類別。
// Host the service within this EXE console application.
public static void Main()
{
using (ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService)))
{
try
{
// Open the ServiceHost to start listening for messages.
serviceHost.Open();
// The service can now be accessed.
Console.WriteLine("The service is ready.");
Console.WriteLine("Press <ENTER> to terminate service.");
Console.ReadLine();
// Close the ServiceHost.
serviceHost.Close();
}
catch (TimeoutException timeProblem)
{
Console.WriteLine(timeProblem.Message);
Console.ReadLine();
}
catch (CommunicationException commProblem)
{
Console.WriteLine(commProblem.Message);
Console.ReadLine();
}
}
}
' Host the service within this EXE console application.
Public Shared Sub Main()
' Create a ServiceHost for the CalculatorService type and use the base address from config.
Using svcHost As New ServiceHost(GetType(CalculatorService))
Try
' Open the ServiceHost to start listening for messages.
svcHost.Open()
' The service can now be accessed.
Console.WriteLine("The service is ready.")
Console.WriteLine("Press <ENTER> to terminate service.")
Console.WriteLine()
Console.ReadLine()
'Close the ServiceHost.
svcHost.Close()
Catch timeout As TimeoutException
Console.WriteLine(timeout.Message)
Console.ReadLine()
Catch commException As CommunicationException
Console.WriteLine(commException.Message)
Console.ReadLine()
End Try
End Using
End Sub
備註
使用 類別 ServiceHostBase 來建立提供自訂程式設計模型的主機。 Windows Communication Foundation (WCF) 服務程式設計模型會使用 ServiceHost 類別。
給衍生自此類別之 Managed C++ 使用者的特別說明:
請將您的清除程式碼置於 (On)(Begin)Close (and/or OnAbort),而不是解構函式。
避免使用解構函式,因為它們會導致編譯器自動產生 IDisposable。
避免使用非參考成員,因為它們會導致編譯器自動產生 IDisposable。
避免使用完成項,但如果您要加入完成項,則應隱藏建置警告並從 (On)(Begin)Close (和/或 OnAbort) 呼叫 和完成項本身,以模擬原本可能自動產生的 行為。
建構函式
ServiceHostBase() |
初始化 ServiceHostBase 類別的新執行個體。 |
屬性
Authentication |
取得服務驗證行為。 |
Authorization |
取得裝載之服務的授權行為。 |
BaseAddresses |
取得裝載之服務使用的基底位址。 |
ChannelDispatchers |
取得服務主機使用的通道發送器集合。 |
CloseTimeout |
取得或設定允許服務主機關閉的時間間隔。 |
Credentials |
取得裝載之服務的認證。 |
DefaultCloseTimeout |
取得允許服務主機關閉的預設時間間隔。 |
DefaultOpenTimeout |
取得允許服務主機開啟的預設時間間隔。 |
Description |
取得裝載之服務的描述。 |
Extensions |
取得目前指定服務主機的延伸。 |
ImplementedContracts |
擷取由裝載之服務實作的合約。 |
IsDisposed |
取得值,這個值會指出是否已經處置通訊物件。 (繼承來源 CommunicationObject) |
ManualFlowControlLimit |
取得或設定由裝載之服務接收的訊息流量控制限制。 |
OpenTimeout |
取得或設定允許服務主機開啟的時間間隔。 |
State |
取得值,這個值表示通訊物件目前的狀態。 (繼承來源 CommunicationObject) |
ThisLock |
取得會在狀態轉換期間保護類別執行個體的互斥鎖定。 (繼承來源 CommunicationObject) |
方法
事件
Closed |
當通訊物件轉換至已關閉狀態時發生。 (繼承來源 CommunicationObject) |
Closing |
當通訊物件轉換至關閉狀態時就會發生。 (繼承來源 CommunicationObject) |
Faulted |
當通訊物件轉換至錯誤狀態時發生。 (繼承來源 CommunicationObject) |
Opened |
當通訊物件轉換至已開啟狀態時發生。 (繼承來源 CommunicationObject) |
Opening |
當通訊物件轉換至開啟狀態時發生。 (繼承來源 CommunicationObject) |
UnknownMessageReceived |
發生於收到未知訊息時。 |
明確介面實作
IDisposable.Dispose() |
關閉服務主機。 |