本文整理匯總了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);
}