0

I know Web Services and WCF services are examples of the proxy pattern, where else in .NET land is the proxy pattern utilized?

Dave Schweisguth
  • 36,475
  • 10
  • 98
  • 121
dbobrowski
  • 846
  • 2
  • 9
  • 18
  • If you download the Enterprise Library Code and look at the source, there is likely plenty of proxy patterns utilized. I can't get specific as my computer is having issues, but the Logger is somewhat of a proxy pattern. – Rob Allen Nov 11 '11 at 15:58

1 Answers1

0

COM-Callable Wrappers (CCW) and Runtime-Callable Wrappers (RCW) are classic examples of the use of Proxies. Likewise for .NET Remoting.

tcarvin
  • 10,715
  • 3
  • 31
  • 52