Beispiel #1
0
        public void xdrDecode(XdrDecodingStream xdr)
        {
            this._status = (NFSStats)xdr.xdrDecodeInt();

            switch (this._status)
            {
                case NFSStats.NFS_OK:
                    this._ok = new ItemAccessOK(xdr);
                    break;
                default:
                    break;
            }
        }
Beispiel #2
0
        public void xdrDecode(XdrDecodingStream xdr)
        {
            this._status = (NFSStats)xdr.xdrDecodeInt();

            switch (this._status)
            {
            case NFSStats.NFS_OK:
                this._ok = new ItemAccessOK(xdr);
                break;

            default:
                break;
            }
        }