Click here to Skip to main content
15,881,757 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 111.8K   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;

namespace IPFiltering
{
    public class ThreadSafeSingleton<T>
        where T : class
    {
        private object _syncObject = new object();
        private T _value;
        private Func<T> _createHandler;


        /// <summary>
        /// Initializes a new instance of the <see cref="ThreadSafeSingleton&lt;T&gt;"/> class.
        /// </summary>
        /// <param name="create">The create.</param>
        public ThreadSafeSingleton(Func<T> create)
        {
            if (create == null)
            {
                throw new ArgumentNullException("create");
            }
            _createHandler = create;
        }

        /// <summary>
        /// Gets the value.
        /// </summary>
        /// <value>The value.</value>
        public T Value
        {
            get
            {
                if (_value == null)
                {
                    lock (_syncObject)
                    {
                        if (_value == null)
                        {
                            _value = _createHandler();
                        }
                    }
                }
                return _value;
            }
        }

    }

    public class Singleton<T>
        where T : class
    {
        private T _value;
        private Func<T> _createHandler;

        /// <summary>
        /// Initializes a new instance of the <see cref="Singleton&lt;T&gt;"/> class.
        /// </summary>
        /// <param name="create">The create.</param>
        public Singleton(Func<T> create)
        {
            if (create == null)
            {
                throw new ArgumentNullException("create");
            }
            _createHandler = create;
        }

        /// <summary>
        /// Gets the value.
        /// </summary>
        /// <value>The value.</value>
        public T Value
        {
            get
            {
                if (_value == null)
                {
                    _value = _createHandler();
                }
                return _value;
            }
        }

    }
}

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