Ejemplo n.º 1
0
            public void AddFeatureScope(Microsoft.SharePoint.SPFeatureScope scope)
            {
                int count = 0;

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