BackupInfo Constructor (String, Boolean, Boolean, BackupLocation[])
Applies To: SQL Server (starting with 2016)
Initializes a new instance of the BackupInfo class using a file name, indicates whether overwrite and backup of remote partitions are allowed, and specifies the locations for the backup to be stored.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)
Syntax
public BackupInfo(
string file,
bool allowOverwrite,
bool backupRemotePartitions,
BackupLocation[] locations
)
public:
BackupInfo(
String^ file,
bool allowOverwrite,
bool backupRemotePartitions,
array<BackupLocation^>^ locations
)
new :
file:string *
allowOverwrite:bool *
backupRemotePartitions:bool *
locations:BackupLocation[] -> BackupInfo
Public Sub New (
file As String,
allowOverwrite As Boolean,
backupRemotePartitions As Boolean,
locations As BackupLocation()
)
Parameters
file
Type: System.StringThe file name to backup to.
allowOverwrite
Type: System.Booleantrue if overwrite is allowed; otherwise, false.
backupRemotePartitions
Type: System.Booleantrue if backup of remote partitions is allowed; otherwise, false.
locations
Type: Microsoft.AnalysisServices.BackupLocation[]The locations for all remote partitions.
See Also
BackupInfo Overload
BackupInfo Class
Microsoft.AnalysisServices Namespace
Return to top