當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。