ServicesContainer.Remove Method

Removes the first occurrence of the given service from the service list for the given service type.

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

Syntax

'Declaration
Public Function Remove ( _
    serviceType As Type, _
    service As Object _
) As Boolean
'Usage
Dim instance As ServicesContainer 
Dim serviceType As Type 
Dim service As Object 
Dim returnValue As Boolean 

returnValue = instance.Remove(serviceType, _
    service)
public bool Remove(
    Type serviceType,
    Object service
)
public:
bool Remove(
    Type^ serviceType, 
    Object^ service
)
member Remove : 
        serviceType:Type * 
        service:Object -> bool
public function Remove(
    serviceType : Type, 
    service : Object
) : boolean

Parameters

Return Value

Type: System.Boolean
true if the item is successfully removed; otherwise, false.

See Also

Reference

ServicesContainer Class

System.Web.Http.Controllers Namespace