コード例 #1
0
 public void Insert(int index, TheKnot.Membership.Security.Components.MsdRuleItem value)
 {
     ((IList) this).Insert(index, value);
 }
コード例 #2
0
 public void Remove(TheKnot.Membership.Security.Components.MsdRuleItem value)
 {
     ((IList) this).Remove(value);
 }
コード例 #3
0
 public int IndexOf(TheKnot.Membership.Security.Components.MsdRuleItem value)
 {
     return ((IList) this).IndexOf(value);
 }
コード例 #4
0
 public bool Contains(TheKnot.Membership.Security.Components.MsdRuleItem value)
 {
     return ((IList) this).Contains(value);
 }
コード例 #5
0
 public CustomAuthenticationConfiguration(Hashtable providers, TheKnot.Membership.Security.Providers.CustomAuthenticationProvider cap)
 {
     this.providerList = providers;
     this.defaultProvider = cap;
 }
コード例 #6
0
 public bool IsAuthenticated(bool force, TheKnot.Membership.Security.GatingRules gatingRules)
 {
     bool flag = false;
     if (force)
     {
         flag = TheKnot.Membership.Security.Authentication.IsAuthenticated(true);
         this.Gate(gatingRules);
     }
     else
     {
         flag = TheKnot.Membership.Security.Authentication.IsAuthenticated(force) && (this.member != null);
     }
     if (flag && (gatingRules != TheKnot.Membership.Security.GatingRules.None))
     {
         this.Gate(gatingRules);
     }
     return flag;
 }
コード例 #7
0
 public void Gate(TheKnot.Membership.Security.GatingRules settings)
 {
     TheKnot.Membership.Security.GatingManager.Gate(settings, this.member, TheKnot.Membership.Security.SiteContext.Current);
 }