当前位置: 首页>>代码示例>>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;未经允许,请勿转载。