 | BackupReaderOpen Method |
Load the specified
Namespace: SanteDB.Core.Data.BackupAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
Syntaxpublic static BackupReader Open(
Stream backupStream,
string password = null,
bool leaveOpen = false
)
Public Shared Function Open (
backupStream As Stream,
Optional password As String = Nothing,
Optional leaveOpen As Boolean = false
) As BackupReader
public:
static BackupReader^ Open(
Stream^ backupStream,
String^ password = nullptr,
bool leaveOpen = false
)
static member Open :
backupStream : Stream *
?password : string *
?leaveOpen : bool
(* Defaults:
let _password = defaultArg password null
let _leaveOpen = defaultArg leaveOpen false
*)
-> BackupReader Parameters
- backupStream Stream
- The stream from which the backup should be loaded
- password String (Optional)
- The password on the backup to use to decrypt it
- leaveOpen Boolean (Optional)
- True if the underlying stream should be open
Return Value
BackupReader[Missing <returns> documentation for "M:SanteDB.Core.Data.Backup.BackupReader.Open(System.IO.Stream,System.String,System.Boolean)"]
See Also