Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Framework/DynamicProxy
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9200/Aop/Framework/DynamicProxy
Modified Files:
AdvisedProxy.cs
Log Message:
Update to Common.Logging 1.2
Add Logging advice
Refactoring of ExceptionHandlingAdvice
start of retry advice
misc improvements to spring.aop
Index: AdvisedProxy.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aop/Framework/DynamicProxy/AdvisedProxy.cs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** AdvisedProxy.cs 3 Aug 2007 14:38:30 -0000 1.8
--- AdvisedProxy.cs 8 Oct 2007 22:04:51 -0000 1.9
***************
*** 414,417 ****
--- 414,431 ----
#endregion
+
+ #region ITargetTypeAware implementation
+
+ /// <summary>
+ /// Gets the target type behind the implementing object.
+ /// Ttypically a proxy configuration or an actual proxy.
+ /// </summary>
+ /// <value>The type of the target or null if not known.</value>
+ public Type TargetType
+ {
+ get { return m_targetType; }
+ }
+
+ #endregion
}
}
\ No newline at end of file
|