Opens the file for writing with the specified
System.IO.FileShare constant and password.
'Declaration
Protected Overloads Function DoOpenWrite( _
ByVal As Xceed.FileSystem.FileSystemEventsSession, _
ByVal As Boolean, _
ByVal As FileShare, _
ByVal As CompressionMethod, _
ByVal As CompressionLevel, _
ByVal As String _
) As Stream
'Usage
Dim instance As ZippedFile
Dim session As Xceed.FileSystem.FileSystemEventsSession
Dim overwrite As Boolean
Dim share As FileShare
Dim compressionMethod As CompressionMethod
Dim compressionLevel As CompressionLevel
Dim encryptionPassword As String
Dim value As Stream
value = instance.DoOpenWrite(session, overwrite, share, compressionMethod, compressionLevel, encryptionPassword)
protected Stream DoOpenWrite(
Xceed.FileSystem.FileSystemEventsSession ,
bool ,
FileShare ,
CompressionMethod ,
CompressionLevel ,
string
)
Parameters
- session
- A reference to a Xceed.FileSystem.FileSystemEventsSession object which is responsible for raising all events that occur during the process.
- overwrite
- true if existing data for the file should be replaced; false if existing data should be preserved, appending new data at the end.
- share
- A System.IO.FileShare constant that determines how the file will be shared by different processes.
- compressionMethod
- The CompressionMethod that will be used to compress the file.
- compressionLevel
- The CompressionLevel that will be used when compressing the file.
- encryptionPassword
- The password that will be used to encrypt the file.
Return Value
A
System.IO.Stream object that can be used to write data to the file.
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2