We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d528a6 + 66bcbd6 commit d70c016Copy full SHA for d70c016
1 file changed
src/WebApi.OutputCache.V2/InvalidateCacheOutputAttribute.cs
@@ -17,7 +17,7 @@ public InvalidateCacheOutputAttribute(string methodName)
17
18
public InvalidateCacheOutputAttribute(string methodName, Type type = null)
19
{
20
- _controller = type != null ? type.Name.Replace("Controller", string.Empty) : null;
+ _controller = type != null ? type.FullName : null;
21
_methodName = methodName;
22
}
23
0 commit comments