public UsageTracking(Device parent) { Parent = parent; InUseTracker = new InUseTracking(); InUseTracker.InUseFeedback.OutputChange += InUseFeedback_OutputChange; //new EventHandler<EventArgs>(); }
public RoutingOutputPort(string key, eRoutingSignalType type, eRoutingPortConnectionType connType, object selector, IRoutingOutputs parent, bool isInternal) : base(key, type, connType, selector, isInternal) { if (parent == null) { throw new ArgumentNullException("parent"); } ParentDevice = parent; InUseTracker = new InUseTracking(); }