WebServiceHostFactory Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A factory that provides instances of WebServiceHost in managed hosting environments where the host instance is created dynamically in response to incoming messages.
public ref class WebServiceHostFactory : System::ServiceModel::Activation::ServiceHostFactory
public class WebServiceHostFactory : System.ServiceModel.Activation.ServiceHostFactory
type WebServiceHostFactory = class
inherit ServiceHostFactory
Public Class WebServiceHostFactory
Inherits ServiceHostFactory
- Inheritance
Examples
The following example shows how to derive a class from WebServiceHostFactory.
To have your derived Web service host factory used, specify it in a .SVC file. The following example shows the syntax used in a .svc file.
<%@ServiceHost language=c# Service="Microsoft.Samples.MyWCFService" Factory="Microsoft.Samples.MyWebServiceHostFactory" %>
Remarks
The managed hosting environments that support dynamic activation are Internet Information Services (IIS) and Windows Process Activation Service (WAS).
If you have implemented a custom derivative of WebServiceHost, consider also implementing a factory that derives from the WebServiceHostFactory class.
Constructors
WebServiceHostFactory() |
Initializes a new instance of the WebServiceHostFactory class. |
Methods
CreateServiceHost(String, Uri[]) |
Creates a ServiceHost with specific base addresses and initializes it with specified data. (Inherited from ServiceHostFactory) |
CreateServiceHost(Type, Uri[]) |
Creates an instance of the specified WebServiceHost derived class with the specified base addresses. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |