Share via


IConfigBuilder Interface

 

Provides an abstraction for configuring a service. Each method in this interface is called as part of the configuration process enabling a service to participate and change the configuration during every step of the process.

Namespace:   Microsoft.WindowsAzure.Mobile.Service.Config
Assembly:  Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)

Syntax

public interface IConfigBuilder
public interface class IConfigBuilder
type IConfigBuilder = interface end
Public Interface IConfigBuilder

Methods

Name Description
System_CAPS_pubmethod ConfigureOwin(HttpConfiguration)

This step is called as part of configuring the Owin application pipeline.

System_CAPS_pubmethod ConfigureWebApi(HttpConfiguration, IDictionary<Type, Object>)

This step is called as part of configuring ASP.NET Web API. It is passed the config which it can modify in place and a set of serviceInstances infrastructure services which the service depends on. These infrastructure services must be registered with the dependency resolver so that the runtime can obtain them at runtime.

See Also

Microsoft.WindowsAzure.Mobile.Service.Config Namespace

Return to top