Exemple #1
0
            public void AddFeatureScope(Microsoft.SharePoint.SPFeatureScope scope)
            {
                int count = 0;

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