當前位置: 首頁>>代碼示例>>C#>>正文


C# oncrpc.XdrEncodingStream類代碼示例

本文整理匯總了C#中org.acplt.oncrpc.XdrEncodingStream的典型用法代碼示例。如果您正苦於以下問題:C# XdrEncodingStream類的具體用法?C# XdrEncodingStream怎麽用?C# XdrEncodingStream使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


XdrEncodingStream類屬於org.acplt.oncrpc命名空間,在下文中一共展示了XdrEncodingStream類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: xdrEncode

        public void xdrEncode(XdrEncodingStream xdr)
        {
            xdr.xdrEncodeBoolean(this._attributes_follow);

            if (this._attributes_follow)
            { this._attributes.xdrEncode(xdr); }
        }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:7,代碼來源:PostOperationAttributes.cs

示例2: xdrEncode

        public void xdrEncode(XdrEncodingStream xdr)
        {
            xdr.xdrEncodeBoolean(this._setmode);
            if (this._setmode)
            { xdr.xdrEncodeInt(this._mode.Mode); }

            xdr.xdrEncodeBoolean(this._setuid);
            if (this._setuid)
            { xdr.xdrEncodeInt(this._uid); }

            xdr.xdrEncodeBoolean(this._setgid);
            if (this._setgid)
            { xdr.xdrEncodeInt(this._gid); }

            xdr.xdrEncodeBoolean(this._setsize);
            if (this._setsize)
            { xdr.xdrEncodeLong(this._size); }

            xdr.xdrEncodeBoolean(this._setatime != TimeHow.DONT_CHANGE);
            if (this._setatime != TimeHow.DONT_CHANGE)
            { this._atime.xdrEncode(xdr); }

            xdr.xdrEncodeBoolean(this._setmtime != TimeHow.DONT_CHANGE);
            if (this._setmtime != TimeHow.DONT_CHANGE)
            { this._mtime.xdrEncode(xdr); }
        }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:26,代碼來源:MakeAttributes.cs

示例3: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr) {
     xdr.xdrEncodeInt(fss_type);
     fss_source.xdrEncode(xdr);
     fss_current.xdrEncode(xdr);
     xdr.xdrEncodeInt(fss_age);
     fss_version.xdrEncode(xdr);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:7,代碼來源:fs4_status.cs

示例4: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     { int _size = ssp_hash_algs.Length; xdr.xdrEncodeInt(_size); for ( int _idx = 0; _idx < _size; ++_idx ) { ssp_hash_algs[_idx].xdrEncode(xdr); } }
     { int _size = ssp_encr_algs.Length; xdr.xdrEncodeInt(_size); for ( int _idx = 0; _idx < _size; ++_idx ) { ssp_encr_algs[_idx].xdrEncode(xdr); } }
     xdr.xdrEncodeInt(ssp_window);
     xdr.xdrEncodeInt(ssp_num_gss_handles);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:7,代碼來源:ssv_sp_parms4.cs

示例5: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr) {
     csa_sequenceid.xdrEncode(xdr);
     csa_slotid.xdrEncode(xdr);
     csa_highest_slotid.xdrEncode(xdr);
     xdr.xdrEncodeBoolean(csa_cachethis);
     { int _size = csa_referring_call_lists.Length; xdr.xdrEncodeInt(_size); for ( int _idx = 0; _idx < _size; ++_idx ) { csa_referring_call_lists[_idx].xdrEncode(xdr); } }
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:7,代碼來源:CB_SEQUENCE4args.cs

示例6: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     stateid.xdrEncode(xdr);
     offset.xdrEncode(xdr);
     xdr.xdrEncodeInt(stable);
     xdr.xdrEncodeDynamicOpaque(data);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:7,代碼來源:WRITE4args.cs

示例7: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     this._file.xdrEncode(xdr);
     xdr.xdrEncodeInt(this._offset);
     xdr.xdrEncodeInt(this._count);
     xdr.xdrEncodeInt(this._totalcount);
 }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:7,代碼來源:ReadArguments.cs

示例8: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     this._attributes.xdrEncode(xdr);
     xdr.xdrEncodeInt(this._count);
     xdr.xdrEncodeBoolean(this._eof);
     xdr.xdrEncodeDynamicOpaque(this._data);
 }
開發者ID:mushuanli,項目名稱:nekodrive,代碼行數:7,代碼來源:ReadStatus.cs

示例9: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     xdr.xdrEncodeInt(claim);
     switch ( claim ) {
     case open_claim_type4.CLAIM_NULL:
         file.xdrEncode(xdr);
         break;
     case open_claim_type4.CLAIM_PREVIOUS:
         xdr.xdrEncodeInt(delegate_type);
         break;
     case open_claim_type4.CLAIM_DELEGATE_CUR:
         delegate_cur_info.xdrEncode(xdr);
         break;
     case open_claim_type4.CLAIM_DELEGATE_PREV:
         file_delegate_prev.xdrEncode(xdr);
         break;
     case open_claim_type4.CLAIM_FH:
         break;
     case open_claim_type4.CLAIM_DELEG_PREV_FH:
         break;
     case open_claim_type4.CLAIM_DELEG_CUR_FH:
         oc_delegate_stateid.xdrEncode(xdr);
         break;
     }
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:25,代碼來源:open_claim4.cs

示例10: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     this._file_wcc.xdrEncode(xdr);
     xdr.xdrEncodeInt(this._count);
     xdr.xdrEncodeInt((int)this._committed);
     xdr.xdrEncodeOpaque(this._verf, NFSv3Protocol.NFS3_WRITEVERFSIZE);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:7,代碼來源:WriteStatus.cs

示例11: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     gdda_notification_types.xdrEncode(xdr);
     gdda_child_attr_delay.xdrEncode(xdr);
     gdda_dir_attr_delay.xdrEncode(xdr);
     gdda_child_attributes.xdrEncode(xdr);
     gdda_dir_attributes.xdrEncode(xdr);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:8,代碼來源:GET_DIR_DELEGATION4args.cs

示例12: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     xdr.xdrEncodeInt(stamp);
     xdr.xdrEncodeString(machinename);
     xdr.xdrEncodeInt(uid);
     xdr.xdrEncodeInt(gid);
     xdr.xdrEncodeIntVector(gids);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:8,代碼來源:authsys_parms.cs

示例13: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     stateid.xdrEncode(xdr);
     cinfo.xdrEncode(xdr);
     rflags.xdrEncode(xdr);
     attrset.xdrEncode(xdr);
     delegation.xdrEncode(xdr);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:8,代碼來源:OPEN4resok.cs

示例14: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr)
 {
     this._file.xdrEncode(xdr);
     xdr.xdrEncodeInt(this._beginoffset);
     xdr.xdrEncodeInt(this._offset);
     xdr.xdrEncodeInt(this._totalcount);
     xdr.xdrEncodeDynamicOpaque(this._data);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:8,代碼來源:WriteArguments.cs

示例15: xdrEncode

 public void xdrEncode(XdrEncodingStream xdr) {
     loca_length.xdrEncode(xdr);
     xdr.xdrEncodeBoolean(loca_reclaim);
     loca_stateid.xdrEncode(xdr);
     loca_last_write_offset.xdrEncode(xdr);
     loca_time_modify.xdrEncode(xdr);
     loca_layoutupdate.xdrEncode(xdr);
 }
開發者ID:zjianliu,項目名稱:NFSClient,代碼行數:8,代碼來源:LAYOUTCOMMIT4args.cs


注:本文中的org.acplt.oncrpc.XdrEncodingStream類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。