本文整理汇总了C#中org.acplt.oncrpc.XdrDecodingStream.xdrDecodeOpaque方法的典型用法代码示例。如果您正苦于以下问题:C# XdrDecodingStream.xdrDecodeOpaque方法的具体用法?C# XdrDecodingStream.xdrDecodeOpaque怎么用?C# XdrDecodingStream.xdrDecodeOpaque使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.acplt.oncrpc.XdrDecodingStream
的用法示例。
在下文中一共展示了XdrDecodingStream.xdrDecodeOpaque方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
this._file_wcc = new WritingData(xdr);
this._count = xdr.xdrDecodeInt();
this._committed = (StableHow)xdr.xdrDecodeInt();
this._verf = xdr.xdrDecodeOpaque(NFSv3Protocol.NFS3_WRITEVERFSIZE);
}
示例2: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
this._item = new NFSHandle();
this._item.Version = V3.RPC.NFSv3Protocol.NFS_V3;
this._item.xdrDecode(xdr);
this._cookie = new NFSCookie(xdr);
this._cookieverf = xdr.xdrDecodeOpaque(NFSv3Protocol.NFS3_COOKIEVERFSIZE);
this._count = xdr.xdrDecodeInt();
}
示例3: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
switch (this._version)
{
case 2:
this._value = xdr.xdrDecodeOpaque(V2.RPC.NFSv2Protocol.FHSIZE);
break;
case 3:
this._value = xdr.xdrDecodeDynamicOpaque();
break;
}
}
示例4: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
this._file_wcc = new WritingData(xdr);
this._verf = xdr.xdrDecodeOpaque(NFSv3Protocol.NFS3_WRITEVERFSIZE);
}
示例5: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
this._dir_attributes = new PostOperationAttributes(xdr);
this._cookieverf = xdr.xdrDecodeOpaque(NFSv3Protocol.NFS3_COOKIEVERFSIZE);
this._reply = new FolderList(xdr);
}
示例6: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
this._mode = (MakeFileModes)xdr.xdrDecodeInt();
switch (this._mode)
{
case MakeFileModes.UNCHECKED:
case MakeFileModes.GUARDED:
this._obj_attributes = new MakeAttributes(xdr);
break;
case MakeFileModes.EXCLUSIVE:
this._verf = xdr.xdrDecodeOpaque(NFSv3Protocol.NFS3_CREATEVERFSIZE);
break;
}
}
示例7: xdrDecode
public void xdrDecode(XdrDecodingStream xdr) {
value = xdr.xdrDecodeOpaque(NFSv4Protocol.NFS4_DEVICEID4_SIZE);
}
示例8: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
seqid = new uint32_t(xdr);
other = xdr.xdrDecodeOpaque(12);
}
示例9: xdrDecode
public void xdrDecode(XdrDecodingStream xdr)
{
value = xdr.xdrDecodeOpaque(NFSv4Protocol.NFS4_SESSIONID_SIZE);
}