Exemplo n.º 1
0
 public bool Delete(CompoundIdentity id, SiteAliasScheme scheme)
 {
     if (id != null && scheme != null)
     {
         return(this.Delete(id, scheme.Identity));
     }
     return(false);
 }
Exemplo n.º 2
0
 public bool Delete(SiteAliasScheme item)
 {
     if (item != null)
     {
         return(this.Delete(item.Identity));
     }
     return(false);
 }
Exemplo n.º 3
0
 public bool Equals(SiteAliasScheme other)
 {
     if (other != null)
         return this.Identity.Equals(other.Identity);
     return false;
 }
Exemplo n.º 4
0
 public abstract bool CanDelete(SiteAliasScheme item);
Exemplo n.º 5
0
 public abstract bool CanUpdate(SiteAliasScheme item);
Exemplo n.º 6
0
 public abstract SiteAlias Create(SiteAliasScheme scheme, Site site, string name);
Exemplo n.º 7
0
 public abstract bool Delete(SiteAliasScheme scheme);
Exemplo n.º 8
0
 public abstract IEnumerable <SiteAlias> Get(SiteAliasScheme scheme, string name, StringComparison comparisonOption);
Exemplo n.º 9
0
 public abstract IEnumerable <SiteAlias> Get(CompoundIdentity id, SiteAliasScheme scheme);
Exemplo n.º 10
0
 public IEnumerable <SiteAlias> Get(SiteAliasScheme scheme, string name)
 {
     return(this.Get(scheme, name, StringComparison.OrdinalIgnoreCase));
 }
Exemplo n.º 11
0
 public abstract IEnumerable <SiteAlias> Get(SiteAliasScheme scheme);
Exemplo n.º 12
0
 public abstract bool Exists(SiteAliasScheme scheme, string name, StringComparison comparisonOption);
Exemplo n.º 13
0
 public bool Exists(SiteAliasScheme scheme, string name)
 {
     return(this.Exists(scheme, name, StringComparison.OrdinalIgnoreCase));
 }
Exemplo n.º 14
0
 public abstract bool Exists(CompoundIdentity id, SiteAliasScheme scheme);