Ejemplo n.º 1
0
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._item = new NFSHandle();
     this._item.Version = V2.RPC.NFSv2Protocol.NFS_VERSION;
     this._item.xdrDecode(xdr);
     this._attributes = new FileAttributes(xdr);
 }
Ejemplo n.º 2
0
        public void xdrDecode(XdrDecodingStream xdr)
        {
            this._status = (NFSStats)xdr.xdrDecodeInt();

            switch (this._status)
            {
                case NFSStats.NFS_OK:
                    this._attributes = new FileAttributes(xdr);
                    break;
                default:
                    break;
            }
        }
Ejemplo n.º 3
0
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._attributes = new FileAttributes(xdr);
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
Ejemplo n.º 4
0
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._attributes = new FileAttributes(xdr);
     this._data       = xdr.xdrDecodeDynamicOpaque();
 }