HttpConfiguration.Services Property

 

Gets the container of default services associated with this instance.

Namespace:   System.Web.Http
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public ServicesContainer Services {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    internal set;
}
public:
property ServicesContainer^ Services {
    [CompilerGeneratedAttribute]
    ServicesContainer^ get();
    [CompilerGeneratedAttribute]
    internal: void set(ServicesContainer^ value);
}
member Services : ServicesContainer with get, internal set
Public Property Services As ServicesContainer
    Get
    Friend Set
End Property

Property Value

Type: System.Web.Http.Controllers.ServicesContainer

The ServicesContainer that contains the default services for this instance.

See Also

HttpConfiguration Class
System.Web.Http Namespace

Return to top