本文整理汇总了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();
}
示例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();
}
示例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);
}
示例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();
}
示例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);
}
示例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();
}
示例7: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{ this._value = xdr.xdrDecodeLong(); }
示例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);
}
示例9: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
this._size = xdr.xdrDecodeLong();
this._mtime = new NFSTimeValue(xdr);
this._ctime = new NFSTimeValue(xdr);
}