天天看點

DataSerializerProcessorAttribute類(NetworkComms 2.3.1源碼了解和學習)【開源下載下傳】基于TCP網絡通信的即時聊天系統(IM系統)(c#源碼)[源碼下載下傳]Demo2.模拟簡單登陸-效果圖 基于networkcomms2.3.1[源碼下載下傳]Demo1 用戶端從伺服器擷取資訊(基于networkcomms2.3.1)【開源下載下傳】基于TCP網絡通信的自動更新程式c#源碼

networkComms.net2.3.1開源版本,基于gpl V3協定。因為不能公開3.x版本的源碼,是以基于此版本進行學習。3.X版本進行了諸多改進和Bug修複,使用方法上兩者相差不大。
/*請注意使用以下代碼,需遵循GplV3協定*/
//在英文網站上購買 九折折扣代碼: NCDN_PRCLW
using System;
using System.Collections.Generic;
using System.Text;

namespace DPSBase
{
    /// <summary>
   
    /// 自定義屬性  --用來跟蹤序列化器和資料處理器
    /// </summary>
    [System.AttributeUsage(AttributeTargets.Class)]
    public class DataSerializerProcessorAttribute : System.Attribute
    {
        /// <summary>
       
        /// 一個位元組ID
        /// </summary>
        public byte Identifier { get; private set; }

        /// <summary>
     
        /// 建立一個屬性相關的執行個體
        /// </summary>
        /// <param name="identifier"></param>
        public DataSerializerProcessorAttribute(byte identifier)
        {
            this.Identifier = identifier;
        }
    }
}
 http://www.cnblogs.com/networkcomms
http://www.networkcoms.cn 編輯
           
來自英國劍橋的c#網絡通訊架構  開源版本: networkcomms2.3.1  可以進入此頁面下載下傳 networkcomms網絡通訊架構學習 
           

【開源下載下傳】基于TCP網絡通信的即時聊天系統(IM系統)(c#源碼)

[源碼下載下傳]Demo2.模拟簡單登陸-效果圖 基于networkcomms2.3.1

[源碼下載下傳]Demo1 用戶端從伺服器擷取資訊(基于networkcomms2.3.1)

【開源下載下傳】基于TCP網絡通信的自動更新程式c#源碼

【模闆下載下傳】分享我所使用的資料庫架構

【模闆下載下傳】innosetup 制作.net安裝包的模闆

【模闆下載下傳】分享我所使用的資料庫架構

轉載于:https://my.oschina.net/networkcomms/blog/382008