public override void Unmarshal(DataInputStream dis)
        {
            base.Unmarshal(dis);

            if (dis != null)
            {
                try
                {
                    this._orginatingEntityID.Unmarshal(dis);
                    this._recevingEntityID.Unmarshal(dis);
                    this._requestID = dis.ReadUnsignedInt();
                    this._requiredReliabilityService = dis.ReadUnsignedByte();
                    this._tranferType = dis.ReadUnsignedByte();
                    this._transferEntityID.Unmarshal(dis);
                    this._numberOfRecordSets = dis.ReadUnsignedByte();

                    for (int idx = 0; idx < this.NumberOfRecordSets; idx++)
                    {
                        RecordSet anX = new RecordSet();
                        anX.Unmarshal(dis);
                        this._recordSets.Add(anX);
                    }
                }
                catch (Exception e)
                {
                    if (PduBase.TraceExceptions)
                    {
                        Trace.WriteLine(e);
                        Trace.Flush();
                    }

                    this.RaiseExceptionOccured(e);

                    if (PduBase.ThrowExceptions)
                    {
                        throw e;
                    }
                }
            }
        }