A Simple implementation of the Proxy Design Pattern using C#

A proxy is an object that can be used to control creation and access of a more complex object thereby deferring the cost of
creating it until the time its needed.

Below is a simple implementation of the proxy pattern in C#. The ComplexProtectedExpensiveResource is private to the
ProxyContainer and cannot be instantiated by a client. The client creates an instance of the SimpleProxy class which controls
its access to the more complex and expensive to create ComplexProtectedExpensiveResource class.

Note that the ComplexProtectedExpensiveResource is created by the SimpleProxy instance only when needed and after
verifying that the client indeed has access to it.

namespace Patterns { class ProxyContainer { private class ComplexProtectedExpensiveResource { internal void DoWork() { //do some heavy lifting } }

    // The Proxy
    public class SimpleProxy
    {
        ComplexProtectedExpensiveResource \_complexProtectedResource;
        private string \_password;

        public SimpleProxy(string password)
        {
            \_password = password;
        }

        public void DoWork()
        {
            if (Authenticate())
            {
                \_complexProtectedResource.DoWork();    
            }
        }

        bool Authenticate()
        {
            //authenticate request
            if (\_password == "password")
            {
                //create expensive object if authenticated
                if (\_complexProtectedResource == null)
                    \_complexProtectedResource = new ComplexProtectedExpensiveResource();
                return true;
            }
            return false;
        }
    }
}

// The Client
class ProxyPattern : ProxyContainer
{
    static void DoWork()
    {
       var simpleProxy = new SimpleProxy("password");
       simpleProxy.DoWork();
    }
}

}

This article is part of the GWB Archives. Original Author: Asif Maniar

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.