コード例 #1
0
ファイル: ReadStatus.cs プロジェクト: zjianliu/NFSClient
 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._status = (NFSStats)xdr.xdrDecodeInt();
     switch (this._status)
     {
         case NFSStats.NFS_OK:
             this._ok = new ReadAccessOK(xdr);
             break;
         default:
             break;
     }
 }
コード例 #2
0
        public void xdrDecode(XdrDecodingStream xdr)
        {
            this._status = (NFSStats)xdr.xdrDecodeInt();
            switch (this._status)
            {
            case NFSStats.NFS_OK:
                this._ok = new ReadAccessOK(xdr);
                break;

            default:
                break;
            }
        }