Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8190/NHibernate/Engine
Modified Files:
ISessionImplementor.cs
Log Message:
added some xml comments to a method.
Index: ISessionImplementor.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/ISessionImplementor.cs,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** ISessionImplementor.cs 14 Sep 2004 17:49:54 -0000 1.21
--- ISessionImplementor.cs 27 Sep 2004 01:55:35 -0000 1.22
***************
*** 273,280 ****
/// argument (the entity associated with the key) if no proxy exists.
/// </summary>
! /// <param name="persister"></param>
! /// <param name="key"></param>
/// <param name="impl"></param>
! /// <returns></returns>
object ProxyFor(IClassPersister persister, Key key, object impl);
--- 273,280 ----
/// argument (the entity associated with the key) if no proxy exists.
/// </summary>
! /// <param name="persister">The <see cref="IClassPersister"/> to see if it should be Proxied.</param>
! /// <param name="key">The <see cref="Key"/> that identifies the entity.</param>
/// <param name="impl"></param>
! /// <returns>Returns a the Proxy for the class or the parameter impl.</returns>
object ProxyFor(IClassPersister persister, Key key, object impl);
|