摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ServiceModel;namespace ProjectFrame.Web{ public class ServiceClient<TChannel> : IDisposable { private TChannel channel; public TChannel Channel { get { return this.channel; } } private bool disposed; 阅读全文