Inheritance: IProxyCache
Example #1
0
		public ProxyFactory(IProxyMethodBuilder proxyMethodBuilder)
		{
			if (proxyMethodBuilder == null)
			{
				throw new ArgumentNullException("proxyMethodBuilder");
			}
			ProxyMethodBuilder = proxyMethodBuilder;
			Cache = new ProxyCache();
		}
Example #2
0
 public ProxyFactory(IProxyMethodBuilder proxyMethodBuilder)
 {
     if (proxyMethodBuilder == null)
     {
         throw new ArgumentNullException("proxyMethodBuilder");
     }
     ProxyMethodBuilder = proxyMethodBuilder;
     Cache = new ProxyCache();
 }