当前位置: 首页>>代码示例>>C#>>正文


C# CacheItem.ToString方法代码示例

本文整理汇总了C#中System.Runtime.Caching.CacheItem.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# CacheItem.ToString方法的具体用法?C# CacheItem.ToString怎么用?C# CacheItem.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Runtime.Caching.CacheItem的用法示例。


在下文中一共展示了CacheItem.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RemoveCache

 /// <summary>
 /// Removes the data associated with the <paramref name="cacheItemId"/> from the cache.
 /// </summary>
 /// <param name="cacheItemId">The cache item ID for the cache item.</param>
 public static void RemoveCache(CacheItem cacheItemId)
 {
     CacheManager.Remove(cacheItemId.ToString());
 }
开发者ID:raquelsa,项目名称:GalleryServerProWeb,代码行数:8,代码来源:HelperFunctions.cs

示例2: SetCache

        /// <summary>
        /// Adds the <paramref name="cacheItem"/> to the cache named <paramref name="cacheItemId"/> and set to an absolute expiration
        /// time specified in <paramref name="dateTimeOffset"/>. If it exists it is overwritten.
        /// If <paramref name="cacheItem"/> is null, any existing cache named <paramref name="cacheItemId"/> is deleted.
        /// If caching is disabled (<see cref="IAppSetting.EnableCache" />=<c>false</c>), then no action is taken.
        /// </summary>
        /// <param name="cacheItemId">The cache item ID for the cache item.</param>
        /// <param name="cacheItem">The item to be stored in cache.</param>
        /// <param name="dateTimeOffset">The fixed date and time at which the cache entry will expire.</param>
        public static void SetCache(CacheItem cacheItemId, object cacheItem, DateTimeOffset dateTimeOffset)
        {
            if (!AppSetting.Instance.EnableCache)
                return;

            if (cacheItem != null)
            {
                CacheManager.Add(cacheItemId.ToString(), cacheItem, dateTimeOffset);
            }
            else
            {
                CacheManager.Remove(cacheItemId.ToString());
            }
        }
开发者ID:raquelsa,项目名称:GalleryServerProWeb,代码行数:23,代码来源:HelperFunctions.cs

示例3: GetCache

 /// <summary>
 /// Gets the data stored in cache that has the name <paramref name="cacheItemId"/>. Returns null if no data is in the cache.
 /// </summary>
 /// <param name="cacheItemId">The cache item ID for the cache item.</param>
 /// <returns>Returns the data stored in cache that has the name <paramref name="cacheItemId"/>.</returns>
 public static object GetCache(CacheItem cacheItemId)
 {
     return CacheManager.Get(cacheItemId.ToString());
 }
开发者ID:raquelsa,项目名称:GalleryServerProWeb,代码行数:9,代码来源:HelperFunctions.cs


注:本文中的System.Runtime.Caching.CacheItem.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。