Ejemplo n.º 1
0
        public override bool CompatibleWith(ProxyPropertyBase other)
        {
            var otherTaskGroup = other as TaskGroupProxyProperty;

            if (otherTaskGroup == null)
            {
                return(false);
            }

            return(WorkingNode.GetType() == otherTaskGroup.WorkingNode.GetType() && GroupName == otherTaskGroup.GroupName);
        }
Ejemplo n.º 2
0
 public ProxyPropertyDescriptor(ref ProxyPropertyBase proxy, Attribute[] attrs)
     : base(proxy.Name, attrs)
 {
     Proxy = proxy;
 }
Ejemplo n.º 3
0
 public virtual bool CompatibleWith(ProxyPropertyBase other)
 {
     return(Type == other.Type);
 }