IConfigBuilder.ConfigureOwin Method (HttpConfiguration)
This step is called as part of configuring the Owin application pipeline.
Namespace: Microsoft.WindowsAzure.Mobile.Service.Config
Assembly: Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)
Syntax
Action<IAppBuilder> ConfigureOwin(
HttpConfiguration config
)
Action<IAppBuilder^>^ ConfigureOwin(
HttpConfiguration^ config
)
abstract ConfigureOwin :
config:HttpConfiguration -> Action<IAppBuilder>
Function ConfigureOwin (
config As HttpConfiguration
) As Action(Of IAppBuilder)
Parameters
config
Type: System.Web.Http.HttpConfigurationThe current HttpConfiguration instance.
Return Value
Type: System.Action<IAppBuilder>
An Action<T> to be called when the Owin pipeline is constructed. The action takes IAppBuilder as input parameter. The service can then modify or otherwise manipulate the Owin application pipeline.
See Also
IConfigBuilder Interface
Microsoft.WindowsAzure.Mobile.Service.Config Namespace
Return to top