ServerFactoryAdapter.Create Method (IAppBuilder)
Calls the Create method on the server factory. The method may be static or instance, and may accept the AppFunc and the IAppBuilder.Properties IDictionary<string, object>.
Namespace: Microsoft.Owin.Hosting.ServerFactory
Assembly: Microsoft.Owin.Hosting (in Microsoft.Owin.Hosting.dll)
Syntax
public virtual IDisposable Create(
IAppBuilder builder
)
public:
virtual IDisposable^ Create(
IAppBuilder^ builder
)
abstract Create :
builder:IAppBuilder -> IDisposable
override Create :
builder:IAppBuilder -> IDisposable
Public Overridable Function Create (
builder As IAppBuilder
) As IDisposable
Parameters
- builder
Type: Owin.IAppBuilder
Return Value
Type: System.IDisposable
Returns IDisposable.
Implements
IServerFactoryAdapter.Create(IAppBuilder)
See Also
ServerFactoryAdapter Class
Microsoft.Owin.Hosting.ServerFactory Namespace
Return to top