学习WCF时,你可能会遇到WCF自定义集合问题,这里将介绍WCF自定义集合问题的解决方法,在这里拿出来和大家分享一下。对于一个好的分布式系统来讲,设计时应当考虑到异构性、开放性、安全性、可扩展性、故障处理、并发性以及透明性等问题。基于SOAP的Web Service可以实现异构环境的互操作性,保证了跨平台的通信。
专注于为中小企业提供成都做网站、网站建设服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业陇川免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了超过千家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。
#T#利用WSE(Web Service Enhancements)可以为ASMX提供安全性的保证。.NET Remoting具有丰富的扩展功能,可以创建定制的信道、格式化器和代理程序。Enterprise Service(COM+)提供了对事务的支持,其中还包括分布式事务,可实现故障的恢复。MSMQ可以支持异步调用、脱机连接、断点连接等功能,利用消息队列支持应用程序之间的消息传递。从功能角度来看,WCF整合了ASMX、.Net Remoting、Enterprise Service、WSE以及MSMQ等现有技术的优点,它提供了一种构建安全可靠的分布式面向服务系统的统一的框架模型,使软件研发人员在开发分布式应用时变得更加轻松。
集合元素类的定义如下:
- public enum FileType
- {
- TXT,DOC,HTML,OTHER
- }
- [DataContract]
- public class Document
- {
- private string m_localPath;
- private string m_fileName;
- private FileType m_fileType;
- [DataMember]
- public string LocalPath
- {
- get { return m_localPath; }
- set { m_localPath = value; }
- }
- [DataMember]
- public string FileName
- {
- get { return m_fileName; }
- set { m_fileName = value; }
- }
- [DataMember]
- public FileType FileType
- {
- get { return m_fileType; }
- set { m_fileType = value; }
- }
- }
WCF自定义集合DocumentList则实现了IList接口:
- //which attribute should be applied here?
- public class DocumentList:IList
- {
- private IList m_list = null;
- public DocumentList()
- {
- m_list = new List();
- }
- #region IList Members
- public int IndexOf(Document item)
- {
- return m_list.IndexOf(item);
- }
- public void Insert(int index, Document item)
- {
- m_list.Insert(index,item);
- }
- public void RemoveAt(int index)
- {
- m_list.RemoveAt(index);
- }
- public Document this[int index]
- {
- get
- {
- return m_list[index];
- }
- set
- {
- m_list[index] = value;
- }
- }
- #endregion
- #region ICollection Members
- public void Add(Document item)
- {
- m_list.Add(item);
- }
- public void Clear()
- {
- m_list.Clear();
- }
- public bool Contains(Document item)
- {
- return m_list.Contains(item);
- }
- public void CopyTo(Document[] array, int arrayIndex)
- {
- m_list.CopyTo(array,arrayIndex);
- }
- public int Count
- {
- get { return m_list.Count; }
- }
- public bool IsReadOnly
- {
- get { return m_list.IsReadOnly; }
- }
- public bool Remove(Document item)
- {
- return m_list.Remove(item);
- }
- #endregion
- #region IEnumerable Members
- public IEnumerator GetEnumerator()
- {
- return m_list.GetEnumerator();
- }
- #endregion
- #region IEnumerable Members
- IEnumerator IEnumerable.GetEnumerator()
- {
- return ((IEnumerable)m_list).GetEnumerator();
- }
- #endregion
- }
分享名称:快速上手篇之WCF自定义集合
分享URL:http://www.mswzjz.cn/qtweb/news2/290752.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能