Ejemplo n.º 1
0
 /// <summary>
 /// Testing constructor Only
 /// </summary>
 /// <param name="parent"></param>
 /// <param name="inPipe"></param>
 /// <param name="dataObj"></param>
 /// <param name="isValid"></param>
 public DummyOutputNeutralPort(IElement parent, INeutralPipe inPipe, IBlob dataObj, bool isValid)
 {
     _parent = parent;
     _inPipe = inPipe;
     _dataObj = dataObj;
     _IsValid = isValid;
 }
Ejemplo n.º 2
0
        internal void UnSubscribeFromPipeEvents(INeutralPipe pipe)
        {
            if (pipe == null)
                return;

            pipe.StatusChanged -= new StatusChangeEventHandler<IPipe, PipeStatusChangeEventArgs>(_inPipe_ContentStatusChanged);
        }
Ejemplo n.º 3
0
 public bool Remove(INeutralPipe item)
 {
     throw new NotImplementedException("Not Implemented In DUMMY");
 }
Ejemplo n.º 4
0
 public void Insert(int index, INeutralPipe item)
 {
     throw new NotImplementedException("Not Implemented In DUMMY");
 }
Ejemplo n.º 5
0
 public int IndexOf(INeutralPipe item)
 {
     throw new NotImplementedException("Not Implemented In DUMMY");
 }
Ejemplo n.º 6
0
 public void CopyTo(INeutralPipe[] array, int arrayIndex)
 {
     throw new NotImplementedException("Not Implemented In DUMMY");
 }
Ejemplo n.º 7
0
 public bool Contains(INeutralPipe item)
 {
     throw new NotImplementedException("Not Implemented In DUMMY");
 }
Ejemplo n.º 8
0
 public void Add(INeutralPipe item)
 {
     throw new NotImplementedException("Not Implemented In DUMMY");
 }