当前位置: 首页>>代码示例>>C#>>正文


C# XdrDecodingStream.xdrDecodeDynamicOpaque方法代码示例

本文整理汇总了C#中org.acplt.oncrpc.XdrDecodingStream.xdrDecodeDynamicOpaque方法的典型用法代码示例。如果您正苦于以下问题:C# XdrDecodingStream.xdrDecodeDynamicOpaque方法的具体用法?C# XdrDecodingStream.xdrDecodeDynamicOpaque怎么用?C# XdrDecodingStream.xdrDecodeDynamicOpaque使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.acplt.oncrpc.XdrDecodingStream的用法示例。


在下文中一共展示了XdrDecodingStream.xdrDecodeDynamicOpaque方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     stateid = new stateid4(xdr);
     offset = new offset4(xdr);
     stable = xdr.xdrDecodeInt();
     data = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:7,代码来源:WRITE4args.cs

示例2: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._attributes = new PostOperationAttributes(xdr);
     this._count = xdr.xdrDecodeInt();
     this._eof = xdr.xdrDecodeBoolean();
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:mushuanli,项目名称:nekodrive,代码行数:7,代码来源:ReadStatus.cs

示例3: xdrDecode

    public void xdrDecode(XdrDecodingStream xdr)
 {
        eir_clientid = new clientid4(xdr);
        eir_sequenceid = new sequenceid4(xdr);
        eir_flags = new uint32_t(xdr);
        eir_state_protect = new state_protect4_r(xdr);
        eir_server_owner = new server_owner4(xdr);
        eir_server_scope = xdr.xdrDecodeDynamicOpaque();
        { int size = xdr.xdrDecodeInt(); eir_server_impl_id = new nfs_impl_id4[size]; for ( int idx = 0; idx < size; ++idx ) { eir_server_impl_id[idx] = new nfs_impl_id4(xdr); } }
    }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:10,代码来源:EXCHANGE_ID4resok.cs

示例4: 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

示例5: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     this._file = new NFSHandle();
     this._file.Version = V2.RPC.NFSv2Protocol.NFS_VERSION;
     this._file.xdrDecode(xdr);
     this._beginoffset = xdr.xdrDecodeInt();
     this._offset = xdr.xdrDecodeInt();
     this._totalcount = xdr.xdrDecodeInt();
     this._data = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:10,代码来源:WriteArguments.cs

示例6: 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;
     }
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:12,代码来源:NFSHandle.cs

示例7: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr) {
     lrf_length = new length4(xdr);
     lrf_stateid = new stateid4(xdr);
     lrf_body = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:5,代码来源:layoutreturn_file4.cs

示例8: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     value = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:4,代码来源:utf8string.cs

示例9: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr) {
     loc_body = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:3,代码来源:layout_content4.cs

示例10: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr) {
     fls_info = xdr.xdrDecodeDynamicOpaque();
     fls_server = new utf8str_cis(xdr);
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:4,代码来源:fs_locations_server4.cs

示例11: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     eof = xdr.xdrDecodeBoolean();
     data = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:5,代码来源:READ4resok.cs

示例12: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     smpt_orig_plain = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:4,代码来源:ssv_mic_plain_tkn4.cs

示例13: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     co_verifier = new verifier4(xdr);
     co_ownerid = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:5,代码来源:client_owner4.cs

示例14: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     ssct_iv = xdr.xdrDecodeDynamicOpaque();
     ssct_encr_data = xdr.xdrDecodeDynamicOpaque();
     ssct_hmac = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:6,代码来源:ssv_seal_cipher_tkn4.cs

示例15: xdrDecode

 public void xdrDecode(XdrDecodingStream xdr)
 {
     thi_hintset = new bitmap4(xdr);
     thi_hintlist = xdr.xdrDecodeDynamicOpaque();
 }
开发者ID:zjianliu,项目名称:NFSClient,代码行数:5,代码来源:threshold_item4.cs


注:本文中的org.acplt.oncrpc.XdrDecodingStream.xdrDecodeDynamicOpaque方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。