IsSubsetOf() 공개 메소드

public IsSubsetOf ( SiteString operand ) : bool
operand SiteString
리턴 bool
 // Token: 0x06002B16 RID: 11030 RVA: 0x0009FEB8 File Offset: 0x0009E0B8
 internal bool Equals(SiteString ss, bool ignoreCase)
 {
     if (this.m_site == null)
     {
         return(ss.m_site == null);
     }
     return(ss.m_site != null && this.IsSubsetOf(ss, ignoreCase) && ss.IsSubsetOf(this, ignoreCase));
 }
 public virtual SiteString Intersect(SiteString operand)
 {
     if (operand != null)
     {
         if (this.IsSubsetOf(operand))
         {
             return(this.Copy());
         }
         if (operand.IsSubsetOf(this))
         {
             return(operand.Copy());
         }
     }
     return(null);
 }
 // Token: 0x06002B1B RID: 11035 RVA: 0x000A00EE File Offset: 0x0009E2EE
 public virtual SiteString Union(SiteString operand)
 {
     if (operand == null)
     {
         return(this);
     }
     if (this.IsSubsetOf(operand))
     {
         return(operand.Copy());
     }
     if (operand.IsSubsetOf(this))
     {
         return(this.Copy());
     }
     return(null);
 }
예제 #4
0
 public virtual SiteString Union( SiteString operand )
 {
     if (operand == null)
     {
         return this;
     }
     else if (this.IsSubsetOf( operand ))
     {
         return operand.Copy();
     }
     else if (operand.IsSubsetOf( this ))
     {
         return this.Copy();
     }
     else
     {
         return null;
     }
 }
예제 #5
0
 internal bool Equals( SiteString ss, bool ignoreCase )
 {
     if (this.m_site == null)
         return ss.m_site == null;
     if (ss.m_site == null)
         return false;
     return this.IsSubsetOf(ss, ignoreCase) && ss.IsSubsetOf(this, ignoreCase);
 }
 public virtual SiteString Intersect(SiteString operand)
 {
     if (operand != null)
     {
         if (this.IsSubsetOf(operand))
         {
             return this.Copy();
         }
         if (operand.IsSubsetOf(this))
         {
             return operand.Copy();
         }
     }
     return null;
 }
 internal bool Equals(SiteString ss, bool ignoreCase)
 {
     if (this.m_site == null)
     {
         return (ss.m_site == null);
     }
     if (ss.m_site == null)
     {
         return false;
     }
     return (this.IsSubsetOf(ss, ignoreCase) && ss.IsSubsetOf(this, ignoreCase));
 }