Esempio n. 1
0
 public override bool IsLinkTarget(ZoneBase other)
 {
     return
         (this.IsLinkableSelfZone && (ZoneBase)this == other
          ||
          this.ForwardZones.Any(zone => zone == other)
         );
 }
Esempio n. 2
0
 abstract public bool IsLinkTarget(ZoneBase other);