/// <summary> /// Creates a new instance of PDataTFWriteAdapter /// </summary> public DimseWriter(Fsm fsm) { this.fsm = fsm; }
/// <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(); } }
internal State2(Fsm fsm, int state) : base(fsm, state) { }
internal State1(Fsm fsm, int type) : base(fsm, type) { }
internal State( Fsm fsm, int type) { m_fsm = fsm; this.type = type; }
/// <summary> /// Creates a new instance of DimseReader /// </summary> public DimseReader(Fsm fsm) { this.fsm = fsm; }