 | PostgreSQLProviderBackupToStream Method |
Backup the contents of the database this provider represents to backupStream
Namespace: SanteDB.OrmLite.Providers.PostgresAssembly: SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 3.0.2081-alpha+d0a78774d3f97b9193d2ae2fef6d129ea9f29519
Syntaxpublic bool BackupToStream(
Stream backupStream
)
Public Function BackupToStream (
backupStream As Stream
) As Boolean
public:
virtual bool BackupToStream(
Stream^ backupStream
) sealed
abstract BackupToStream :
backupStream : Stream -> bool
override BackupToStream :
backupStream : Stream -> bool Parameters
- backupStream Stream
- The stream to write the backup to
Return Value
BooleanTrue if the stream was backed up
Implements
IDbBackupProviderBackupToStream(Stream)
RemarksImplementers should ensure that the no further connections are permitted to the database during the course of the backup operation
See Also