SPSite.QueryFeatures 方法 (Guid, Boolean)
Gets a collection of the features deployed in this site collection that have a specific definition identifier, including only features that either do or do not need to be upgraded.
命名空间: Microsoft.SharePoint
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
Public Function QueryFeatures ( _
featureId As Guid, _
needsUpgrade As Boolean _
) As SPFeatureQueryResultCollection
用法
Dim instance As SPSite
Dim featureId As Guid
Dim needsUpgrade As Boolean
Dim returnValue As SPFeatureQueryResultCollection
returnValue = instance.QueryFeatures(featureId, _
needsUpgrade)
public SPFeatureQueryResultCollection QueryFeatures(
Guid featureId,
bool needsUpgrade
)
参数
featureId
类型:System.GuidThe value of the DefinitionId property of an SPFeature object. Only features that have this definition identifier are included.
needsUpgrade
类型:System.BooleanIf true, only features that need to be upgraded are included. If false, only features that do not need to be upgraded are included.
返回值
类型:Microsoft.SharePoint.SPFeatureQueryResultCollection
An enumerable collection of SPFeature objects.