public ConnectorHitTestInfo(CompositeActivityDesigner compositeActivityDesigner, HitTestLocations flags, int connector) : base(compositeActivityDesigner, flags)
 {
     if (this.connector < 0)
     {
         throw new ArgumentException(SR.GetString("Error_InvalidConnectorValue"), "connector");
     }
     this.connector = connector;
 }
 public HitTestInfo(ActivityDesigner designer, HitTestLocations location)
 {
     if (designer == null)
     {
         throw new ArgumentNullException("designer");
     }
     this.activityDesigner = designer;
     this.location = location;
 }
 public HitTestInfo(ActivityDesigner designer, HitTestLocations location)
 {
     if (designer == null)
     {
         throw new ArgumentNullException("designer");
     }
     this.activityDesigner = designer;
     this.location         = location;
 }
 public ConnectorHitTestInfo(CompositeActivityDesigner compositeActivityDesigner, HitTestLocations flags, int connector) : base(compositeActivityDesigner, flags)
 {
     if (this.connector < 0)
     {
         throw new ArgumentException(SR.GetString("Error_InvalidConnectorValue"), "connector");
     }
     this.connector = connector;
 }