EventHandlerExecutionOrderPreserverSaveExecutionOrder Method |
Convenience method.
Resolves the current execution order of all of an application's event handlers
and saves it to NVS.
Namespace:
MFiles.VAF.Core
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic virtual void SaveExecutionOrder(
Vault vault,
string eventHandlerPrefix,
EventHandlers eventHandlers = null,
Nullable<Guid> appGuid = null,
string appName = null
)
Public Overridable Sub SaveExecutionOrder (
vault As Vault,
eventHandlerPrefix As String,
Optional eventHandlers As EventHandlers = Nothing,
Optional appGuid As Nullable(Of Guid) = Nothing,
Optional appName As String = Nothing
)
public:
virtual void SaveExecutionOrder(
Vault^ vault,
String^ eventHandlerPrefix,
EventHandlers^ eventHandlers = nullptr,
Nullable<Guid> appGuid = nullptr,
String^ appName = nullptr
)
Parameters
- vault
- Type: Vault
The current vault. - eventHandlerPrefix
- Type: SystemString
The app's event handler prefix. - eventHandlers (Optional)
- Type: EventHandlers
The current event handlers (optional). - appGuid (Optional)
- Type: SystemNullableGuid
The guid of the application to resolve and save the event handler execution order for.
If not specified, it is resolved form the AppDef.
- appName (Optional)
- Type: SystemString
The name of the application to resolve and save the event handler execution order for.
Informational only. So the NVS serialization can easily be identified.
If not specified, it is resolved form the AppDef.
See Also