當前位置: 首頁>>代碼示例>>C#>>正文


C# XdrDecodingStream.xdrDecodeLong方法代碼示例

本文整理匯總了C#中org.acplt.oncrpc.XdrDecodingStream.xdrDecodeLong方法的典型用法代碼示例。如果您正苦於以下問題:C# XdrDecodingStream.xdrDecodeLong方法的具體用法?C# XdrDecodingStream.xdrDecodeLong怎麽用?C# XdrDecodingStream.xdrDecodeLong使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.acplt.oncrpc.XdrDecodingStream的用法示例。


在下文中一共展示了XdrDecodingStream.xdrDecodeLong方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._file = new NFSHandle();
     this._file.Version = V3.RPC.NFSv3Protocol.NFS_V3;
     this._file.xdrDecode(xdr);
     this._offset = xdr.xdrDecodeLong();
     this._count = xdr.xdrDecodeInt();
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:8,代碼來源:ReadArguments.cs

示例2: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._file = new NFSHandle();
     this._file.Version = V3.RPC.NFSv3Protocol.NFS_V3;
     this._file.xdrDecode(xdr);
     this._offset = xdr.xdrDecodeLong();
     this._count = xdr.xdrDecodeInt();
     this._stable = (StableHow)xdr.xdrDecodeInt();
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:10,代碼來源:WriteArguments.cs

示例3: xdrDecode

        public void xdrDecode(XdrDecodingStream xdr)
        {
            this._type = (NFSItemTypes)xdr.xdrDecodeInt();

            this._mode = new NFSPermission();
            this._mode.Mode = xdr.xdrDecodeInt();

            this._nlink = xdr.xdrDecodeInt();
            this._uid = xdr.xdrDecodeInt();
            this._gid = xdr.xdrDecodeInt();
            this._size = xdr.xdrDecodeLong();
            this._used = xdr.xdrDecodeLong();
            
            this._rdev = new SpecInformation();
            this._rdev.xdrDecode(xdr);
            
            this._fsid = xdr.xdrDecodeLong();
            this._fileid = xdr.xdrDecodeLong();
            this._atime = new NFSTimeValue(xdr);
            this._mtime = new NFSTimeValue(xdr);
            this._ctime = new NFSTimeValue(xdr);
        }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:22,代碼來源:FileAttributes.cs

示例4: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._obj_attributes = new PostOperationAttributes(xdr);
     this._rtmax = xdr.xdrDecodeInt();
     this._rtpref = xdr.xdrDecodeInt();
     this._rtmult = xdr.xdrDecodeInt();
     this._wtmax = xdr.xdrDecodeInt();
     this._wtpref = xdr.xdrDecodeInt();
     this._wtmult = xdr.xdrDecodeInt();
     this._dtpref = xdr.xdrDecodeInt();
     this._maxfilesize = xdr.xdrDecodeLong();
     this._time_delta = new NFSTimeValue(xdr);
     this._properties = xdr.xdrDecodeInt();
 }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:14,代碼來源:FSInfoStatus.cs

示例5: xdrDecode

        public void xdrDecode(XdrDecodingStream xdr)
        {
            Entry _this = this;
            Entry _next;

            do
            {
                _this._fileid = xdr.xdrDecodeLong();
                _this._name = new Name(xdr);
                _this._cookie = new NFSCookie(xdr);
                _next = xdr.xdrDecodeBoolean() ? new Entry() : null;
                _this._nextentry = _next;
                _this = _next;
            } while (_this != null);
        }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:15,代碼來源:Entry.cs

示例6: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._obj_attributes = new PostOperationAttributes(xdr);
     this._tbytes = xdr.xdrDecodeLong();
     this._fbytes = xdr.xdrDecodeLong();
     this._abytes = xdr.xdrDecodeLong();
     this._tfiles = xdr.xdrDecodeLong();
     this._ffiles = xdr.xdrDecodeLong();
     this._afiles = xdr.xdrDecodeLong();
     this._invarsec = xdr.xdrDecodeInt();
 }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:11,代碼來源:FSStatisticsStatus.cs

示例7: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 { this._value = xdr.xdrDecodeLong(); }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:2,代碼來源:NFSCookie.cs

示例8: xdrDecode

        public void xdrDecode(XdrDecodingStream xdr)
        {
            FolderEntry _this = this;
            FolderEntry _next;

            do
            {
                _this._fileid = xdr.xdrDecodeLong();
                _this._name = new Name(xdr);
                _this._cookie = new NFSCookie(xdr);
                _this._name_attributes = new PostOperationAttributes(xdr);
                _this._name_handle = new NFSHandle();
                _this._name_handle.Version = V3.RPC.NFSv3Protocol.NFS_V3;
                _this._name_handle.xdrDecode(xdr);
                _next = xdr.xdrDecodeBoolean() ? new FolderEntry() : null;
                _this._nextentry = _next;
                _this = _next;
            } while (_this != null);
        }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:19,代碼來源:ExtendedReadFolderStatus.cs

示例9: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._size = xdr.xdrDecodeLong();
     this._mtime = new NFSTimeValue(xdr);
     this._ctime = new NFSTimeValue(xdr);
 }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:6,代碼來源:WritingAttributes.cs


注:本文中的org.acplt.oncrpc.XdrDecodingStream.xdrDecodeLong方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。