示例#1
0
        static void Main(string[] args)
        {
            IFile cacheProxy = new CacheProxy();

            cacheProxy.RequestFile("eerste.txt");
            cacheProxy.RequestFile("eerste.txt");
            cacheProxy.RequestFile("tweede.txt");
            cacheProxy.RequestFile("tweede.txt");
            cacheProxy.RequestFile("eerste.txt");

            ProtectionProxy protectionProxy = new ProtectionProxy();

            protectionProxy.RequestFile("eerste.txt");
            protectionProxy.RequestFile("eerste.txt");
            Console.ReadLine();
        }