Blog.Services.Helpers.Wcf.CommunityResource.GetMore C# (CSharp) Méthode

GetMore() public méthode

public GetMore ( int skip ) : List
skip int
Résultat List
        public List<Community> GetMore(int skip)
        {
            using (var svc = new ServiceProxyHelper<ICommunityService>("CommunityService"))
            {
                return svc.Proxy.GetMore(skip);
            }
        }