コード例 #1
0
 public void xdrDecode(XdrDecodingStream xdr)
 {
     fli_valid_for = xdr.xdrDecodeInt();
     fli_fs_root   = new pathname4(xdr);
     { int _size = xdr.xdrDecodeInt(); fli_items = new fs_locations_item4[_size]; for (int _idx = 0; _idx < _size; ++_idx)
       {
           fli_items[_idx] = new fs_locations_item4(xdr);
       }
     }
 }
コード例 #2
0
ファイル: fs_location4.cs プロジェクト: SonnyX/NFS-Client
 public void xdrDecode(XdrDecodingStream xdr)
 {
     rootpath = new pathname4(xdr);
 }
コード例 #3
0
 public void xdrDecode(XdrDecodingStream xdr) {
     fli_rootpath = new pathname4(xdr);
 }
コード例 #4
0
 public void xdrDecode(XdrDecodingStream xdr) {
     fli_valid_for = xdr.xdrDecodeInt();
     fli_fs_root = new pathname4(xdr);
     { int _size = xdr.xdrDecodeInt(); fli_items = new fs_locations_item4[_size]; for ( int _idx = 0; _idx < _size; ++_idx ) { fli_items[_idx] = new fs_locations_item4(xdr); } }
 }