Mercurial > pub > bltoolkit
view Demo/Linq/OverWCF/Client.cs @ 5:f7d63a092920
Исправлено условие Where в тех случаях, когда репозитарий не является генериком
author | cin |
---|---|
date | Tue, 10 Mar 2015 16:02:11 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.ServiceModel; namespace Linq.OverWCF { class Client : ClientBase<IDemoService>, IDemoService { public Client() : base( new NetTcpBinding(SecurityMode.None) { MaxReceivedMessageSize = 10000000, MaxBufferPoolSize = 10000000, MaxBufferSize = 10000000, }, new EndpointAddress("net.tcp://localhost:1234/LinqOverWCF")) { } public IEnumerable<string> DemoMethod(string str) { return Channel.DemoMethod(str); } } }