Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Caching
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13657/Caching
Modified Files:
AbstractCache.cs ICache.cs
Log Message:
reactivated warning 1591 "missing XML doc comment"
excluded unused Spring.Core/Spring.Expressions.Parser/ExpressionParserTokenTypes..cs from builds
Index: ICache.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Caching/ICache.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ICache.cs 25 Aug 2007 10:21:22 -0000 1.4
--- ICache.cs 27 Aug 2007 09:38:11 -0000 1.5
***************
*** 104,111 ****
/// Item's time-to-live.
/// </param>
- /// <param name="slidingExpiration">
- /// Flag specifying whether the item's time-to-live should be reset
- /// when the item is accessed.
- /// </param>
void Insert(object key, object value, TimeSpan timeToLive);
}
--- 104,107 ----
Index: AbstractCache.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Caching/AbstractCache.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** AbstractCache.cs 25 Aug 2007 10:21:21 -0000 1.5
--- AbstractCache.cs 27 Aug 2007 09:38:11 -0000 1.6
***************
*** 49,53 ****
/// Gets/Sets a value, whether the this cache instance's <see cref="TimeToLive"/>
/// shall be applied to all items, regardless of their individual TTL
! /// when <see cref="Insert(object,object,TimeSpan"/> is called.
/// </summary>
public bool EnforceTimeToLive
--- 49,53 ----
/// Gets/Sets a value, whether the this cache instance's <see cref="TimeToLive"/>
/// shall be applied to all items, regardless of their individual TTL
! /// when <see cref="Insert(object,object,TimeSpan)"/> is called.
/// </summary>
public bool EnforceTimeToLive
|