indice.Edi.Serialization.EdiStructure.Close C# (CSharp) Méthode

Close() public méthode

Marks this EdiStructure ready for removal from the stack. Useful on EdiStructureType.SegmentGroup where there is a close condition.
public Close ( ) : void
Résultat void
        public void Close() {
            if (_isClosed)
                throw new EdiException("Cannot close an already closed Structure");
            _isClosed = true;
        }
    }