Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / C#

WCF Service Behavior Example: IPFilter - Allow/Deny Access by IP Address

Rate me:
Please Sign up or sign in to vote.
4.92/5 (17 votes)
15 Jun 2009CPOL7 min read 112.3K   2.3K   63  
WCF Service Behavior Example: IPFilter - Allow/Deny Access by IP Address
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
using System.ServiceModel.Channels;

namespace IPFilterTests
{
    /// <summary>
    /// Test service.
    /// </summary>
    public class TestService : ITestService
    {
        public object Test()
        {
            return "test";
        }
    }

    /// <summary>
    /// Test service contract.
    /// </summary>
    [ServiceContract]
    public interface ITestService
    {
        [OperationContract]
        object Test();
    }

    /// <summary>
    /// Test service client.
    /// </summary>
    public class TestServiceClient : ClientBase<ITestService>, ITestService
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="TestServiceClient"/> class.
        /// </summary>
        /// <param name="binding">The binding.</param>
        /// <param name="endpoint">The endpoint.</param>
        public TestServiceClient(Binding binding, EndpointAddress endpoint)
            : base(binding, endpoint)
        {
        }

        
        public object Test()
        {
            return Channel.Test();
        }

        
    }
    
    
}

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions