#region License
/*
* Copyright 2002-2004 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#endregion
using System;
using System.Collections;
namespace Spring.Caching{
/// <summary>
/// This attribute should be used with methods that return an <see cref="ICollection"/>
/// in order to cache each item separately.
/// </summary>
/// <remarks>
/// <p>
/// This attribute allows application developers to specify that each item
/// from the collection returned by the method should be cached,
/// but it will not do any caching by itself.
/// </p>
/// <p>
/// In order to actually cache the result, an application developer
/// must apply a <c>Spring.Aspects.Cache.CacheResultAdvice</c> to
/// all of the members that have this attribute defined.
/// </p>
/// </remarks>
/// <author>Aleksandar Seovic</author>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
[Serializable]
public sealed class CacheResultItemsAttribute : BaseCacheAttribute
{
/// <summary>
/// Creates an attribute instance.
/// </summary>
public CacheResultItemsAttribute()
{
}
/// <summary>
/// Creates an attribute instance.
/// </summary>
/// <param name="cacheName">
/// The name of the cache to use.
/// </param>
/// <param name="key">
/// An expression string that should be evaluated in order to determine
/// the cache key for the item.
/// </param>
public CacheResultItemsAttribute(string cacheName, string key)
: base(cacheName, key)
{
}
}
}
|