1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using System;
6 using System.Diagnostics;
7 
8 namespace System.Reflection.Runtime.Dispensers
9 {
10     //
11     // A monikor for each reflection cache. The name should follow the style "key" followed by underscore followed by "value".
12     //
13     internal enum DispenserScenario
14     {
15         // Assembly + NamespaceTypeName to Type
16         AssemblyAndNamespaceTypeName_Type,
17 
18         // Assembly refName to Assembly
19         AssemblyRefName_Assembly,
20 
21         // RuntimeAssembly to CaseInsensitiveTypeDictionary
22         RuntimeAssembly_CaseInsensitiveTypeDictionary,
23 
24         // Scope definition handle to RuntimeAssembly
25         Scope_Assembly,
26     }
27 }
28 
29