 | BasicAppSettingsGetLoadedAssemblies method |
Returns a dictionary that is used for all assemblies loaded in the application.
contains the FullName and the assembly.
Can be helpful for troubleshooting in certain cases.
Note: If the switch "DumpLoadedAssemblies" = true, the keys of this dictionary (FullName) are logged in "Dispose".
Namespace: NetEti.ApplicationEnvironmentAssembly: NetEti.BasicAppSettings (in NetEti.BasicAppSettings.dll) Version: 1.0.0+fc721cf1d38e1de155fd33971356662ac9c21f21
Syntaxpublic SortedDictionary<string, Assembly> GetLoadedAssemblies()
Public Function GetLoadedAssemblies As SortedDictionary(Of String, Assembly)
public:
SortedDictionary<String^, Assembly^>^ GetLoadedAssemblies()
member GetLoadedAssemblies : unit -> SortedDictionary<string, Assembly>
Return value
SortedDictionaryString,
AssemblyDictionary that contains the FullName and the assembly for each loaded assembly.
See also