ServiceManager.Contains 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Contains(Type) |
返回一个布尔值,该值指示服务器管理器是否包含给定类型的服务。 |
Contains<TServiceType>() |
返回一个布尔值,该值指示服务器管理器是否包含给定类型的服务。 |
Contains(Type)
返回一个布尔值,该值指示服务器管理器是否包含给定类型的服务。
public:
abstract bool Contains(Type ^ serviceType);
public abstract bool Contains (Type serviceType);
abstract member Contains : Type -> bool
Public MustOverride Function Contains (serviceType As Type) As Boolean
参数
- serviceType
- Type
要检查的服务类型。
返回
如果发布了类型为 serviceType
的服务,则为 true
;否则为 false
。
适用于
Contains<TServiceType>()
返回一个布尔值,该值指示服务器管理器是否包含给定类型的服务。
public:
generic <typename TServiceType>
bool Contains();
public bool Contains<TServiceType> ();
member this.Contains : unit -> bool
Public Function Contains(Of TServiceType) () As Boolean
类型参数
- TServiceType
要检查的服务类型。
返回
如果发布了类型为 serviceType
的服务,则为 true
;否则为 false
。