ServicesContainer.IsSingleService Method
Determine whether the service type should be fetched with GetService or GetServices.
Namespace: System.Web.Http.Controllers
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public MustOverride Function IsSingleService ( _
serviceType As Type _
) As Boolean
'Usage
Dim instance As ServicesContainer
Dim serviceType As Type
Dim returnValue As Boolean
returnValue = instance.IsSingleService(serviceType)
public abstract bool IsSingleService(
Type serviceType
)
public:
virtual bool IsSingleService(
Type^ serviceType
) abstract
abstract IsSingleService :
serviceType:Type -> bool
public abstract function IsSingleService(
serviceType : Type
) : boolean
Parameters
serviceType
Type: System.Typetype of service to query
Return Value
Type: System.Boolean
true iff the service is singular.