Example #1
0
 /// <summary>
 /// Creates a new instance of PDataTFWriteAdapter 
 /// </summary>
 public DimseWriter(Fsm fsm)
 {
     this.fsm = fsm;
 }
Example #2
0
 /// <summary>
 /// Creates a new instance of Association 
 /// </summary>
 public Association(System.Net.Sockets.TcpClient s, bool requestor)
 {
     this.name = "Assoc-" + ++assocCount;
     NDC.Push(name);
     try
     {
         this.fsm = new Fsm(this, s, requestor);
         this.reader = new DimseReader(fsm);
         this.writer = new DimseWriter(fsm);
     }
     finally
     {
         NDC.Pop();
     }
 }
Example #3
0
 internal State2(Fsm fsm, int state)
     : base(fsm, state)
 {
 }
Example #4
0
 internal State1(Fsm fsm, int type)
     : base(fsm, type)
 {
 }
Example #5
0
 internal State( Fsm fsm, int type)
 {
     m_fsm = fsm;
     this.type = type;
 }
Example #6
0
 /// <summary>
 /// Creates a new instance of DimseReader 
 /// </summary>
 public DimseReader(Fsm fsm)
 {
     this.fsm = fsm;
 }