RestoreSettings Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RestoreSettings() |
Initializes a new instance of the RestoreSettings class. |
RestoreSettings(Boolean) |
Initializes a new instance of the RestoreSettings class. |
RestoreSettings(Boolean, Boolean) |
Initializes a new instance of the RestoreSettings class. |
RestoreSettings()
Initializes a new instance of the RestoreSettings class.
public RestoreSettings ();
Public Sub New ()
Applies to
RestoreSettings(Boolean)
Initializes a new instance of the RestoreSettings class.
public RestoreSettings (bool inlineReopen);
new System.Fabric.RestoreSettings : bool -> System.Fabric.RestoreSettings
Public Sub New (inlineReopen As Boolean)
Parameters
- inlineReopen
- Boolean
Indicates if the KeyValueStoreReplica should re-open itself after it has restored successfully from the supplied backup. If false is specified, the replica reports transient fault after successful restore.
Applies to
RestoreSettings(Boolean, Boolean)
Initializes a new instance of the RestoreSettings class.
public RestoreSettings (bool inlineReopen, bool enableLsnCheck);
new System.Fabric.RestoreSettings : bool * bool -> System.Fabric.RestoreSettings
Public Sub New (inlineReopen As Boolean, enableLsnCheck As Boolean)
Parameters
- inlineReopen
- Boolean
Indicates if the KeyValueStoreReplica should re-open itself after it has restored successfully from the supplied backup. If false is specified, the replica reports transient fault after successful restore.
- enableLsnCheck
- Boolean
Indicates if the KeyValueStoreReplica should check that
restore data is not older than data currently present in the service.
This protects against accidental data loss. If false is specified,
KeyValueStoreReplica will overwrite current service data with
restore data even if data present in service in newer.
Applies to
Azure SDK for .NET