Click or drag to resize

RvmCacheMode Enumeration

Customizable attributes used to identify the application to the RVM for automatic runtime management and cleanup

Namespace:  Openfin.Desktop
Assembly:  OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.4.0
Syntax
C#
[FlagsAttribute]
public enum RvmCacheMode
Members
  Member nameValueDescription
None0 The application will generate a random ID every time it asks for a runtime version.
ApplicationGuid1 The entry assembly GUID will be included in the identification hash to the runtime.
ProductName2 The entry assembly product name will be included in the identificaiton hash to the runtime.
ProductVersion4 The entry assembly product version number will be included in the identificaiton hash to the runtime.
CompanyName8 The entry assembly company name will be included in the identificaiton hash to the runtime.
RuntimeVersion16 The requested OpenFin runtime version will be included in the identificaiton hash to the runtime.
ApplicationAssemblyName32 The entry assembly file name will be included in the identificaiton hash to the runtime.
ApplicationDateModified64 The entry assembly date modified file attribute will be included in the identifcation hash to the runtime.
Default30 The entry assembly product name, product version, company name, and the requested runtime version will be included in the identification hash to the runtime.
See Also