Click here to Skip to main content
15,884,472 members
Articles / WCF

A Batch process using RESTful WCF Service

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
6 Jun 2013CPOL2 min read 11.9K   252   6  
This tip contains a solution for a Batch process which invokes a RESTful WCF Service.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace WcfValidationService
{
    public interface IJobsRepository
    {
        string GetExclusion(string code);
             
                
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
I am passionate on coding and application development specially in the .NET C# windows and web platform.

Comments and Discussions