首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

WCF技术黑幕 第6章(6)

2013-04-02 
WCF技术内幕 第6章(6)6.6 创建自定义通道创建基类型//数据报接收会话通道using System.ServiceModel.Chann

WCF技术内幕 第6章(6)

6.6 创建自定义通道


创建基类型

//数据报接收会话通道using System.ServiceModel.Channels;namespace WCFChannelSample{    class DelegatorOutputSessionChannel<TShape> : DelegatorChannelBase<TShape>, IOutputSessionChannel        where TShape : class, IOutputSessionChannel    {        internal DelegatorOutputSessionChannel(ChannelManagerBase channelManagerBase, TShape innerChannel, string source)            : base(channelManagerBase, innerChannel, source) { }        ...    }}

热点排行