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


C# MethodExecutionArgs.GetCacheDictionary方法代码示例

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


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

示例1: OnEntry

		// Executed at runtime, before the method.
		public override void OnEntry(MethodExecutionArgs eventArgs)
		{
			var cache = eventArgs.GetCacheDictionary();

			// Compose the cache key.
			// Ignore ICacheContext every time
			List<object> args = new List<object>();
			foreach (object arg in eventArgs.Arguments)
			{
				if (arg is ICacheContext)
				{
					args.Add(null);
				}
				else
				{
					args.Add(arg);
				}
			}
			string key = this.formatStrings.Format(
				eventArgs.Instance, eventArgs.Method, args.ToArray());

			// Check if cachable param has been detected
			if (cache == null)
			{
				//Preserve the key in case cache gets created prior to exiting the method
				eventArgs.MethodExecutionTag = key;
			}
			else
			{
				// Test whether the cache contains the current method call.
				lock (cache)
				{
					object value;
					if (!cache.TryGetValue(key, out value))
					{
						// If not, we will continue the execution as normally.
						// We store the key in a state variable to have it in the OnExit method.
						eventArgs.MethodExecutionTag = key;
					}
					else
					{
						// If it is in cache, we set the cached value as the return value
						// and we force the method to return immediately.
						eventArgs.ReturnValue = value;
						eventArgs.FlowBehavior = FlowBehavior.Return;
					}
				}
			}
		}
开发者ID:smartpcr,项目名称:Instrumentation,代码行数:50,代码来源:ContextCacheAttribute.cs

示例2: OnSuccess

		// Executed at runtime, after the method.
		public override void OnSuccess(MethodExecutionArgs eventArgs)
		{
			var cache = eventArgs.GetCacheDictionary();
			if (cache != null)
			{
				// Retrieve the key that has been computed in OnEntry.
				string key = (string)eventArgs.MethodExecutionTag;

				// Put the return value in the cache.
				lock (cache)
				{
					cache[key] = eventArgs.ReturnValue;
				}
			}
			else
			{
				throw new InvalidOperationException("No cacheable context or cache dictionary is present");
			}
		}
开发者ID:smartpcr,项目名称:Instrumentation,代码行数:20,代码来源:ContextCacheAttribute.cs


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