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.5.1
Syntax [FlagsAttribute]
public enum RvmCacheMode
Members
| Member name | Value | Description |
---|
| None | 0 |
The application will generate a random ID every time it asks for a runtime version.
|
| ApplicationGuid | 1 |
The entry assembly GUID will be included in the identification hash to the runtime.
|
| ProductName | 2 |
The entry assembly product name will be included in the identificaiton hash to the runtime.
|
| ProductVersion | 4 |
The entry assembly product version number will be included in the identificaiton hash to the runtime.
|
| CompanyName | 8 |
The entry assembly company name will be included in the identificaiton hash to the runtime.
|
| RuntimeVersion | 16 |
The requested OpenFin runtime version will be included in the identificaiton hash to the runtime.
|
| ApplicationAssemblyName | 32 |
The entry assembly file name will be included in the identificaiton hash to the runtime.
|
| ApplicationDateModified | 64 |
The entry assembly date modified file attribute will be included in the identifcation hash to the runtime.
|
| Default | 30 |
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