public void AddFeatureScope(Microsoft.SharePoint.SPFeatureScope scope) { int count = 0; if (ScopeTable.ContainsKey(scope)) { count = ScopeTable[scope]; } ScopeTable[scope] = count + 1; }
internal static bool HasFeatureScope(Microsoft.SharePoint.SPFeatureScope scope) { return(FeatureScopeInfo.HasScope(scope)); }
public bool HasScope(Microsoft.SharePoint.SPFeatureScope scope) { return(ScopeTable.ContainsKey(scope)); }