Begins an asynchronous unzip operation.
<DescriptionAttribute("To begin an asynchronous Unzip operation.")>
Public Overloads Function BeginUnzip( _
ByVal As String, _
ByVal As Boolean, _
ByVal As Overwrite, _
ByVal As Object _
) As IAsyncResult
Dim instance As ArchiveItem
Dim destination As String
Dim preservePath As Boolean
Dim overwrite As Overwrite
Dim state As Object
Dim value As IAsyncResult
value = instance.BeginUnzip(destination, preservePath, overwrite, state)
[Description("To begin an asynchronous Unzip operation.")]
public IAsyncResult BeginUnzip(
string ,
bool ,
Overwrite ,
object
)
[Description("To begin an asynchronous Unzip operation.")]
public: IAsyncResult* BeginUnzip(
string* ,
bool ,
Overwrite ,
Object*
)
[Description("To begin an asynchronous Unzip operation.")]
public:
IAsyncResult^ BeginUnzip(
String^ ,
bool ,
Overwrite ,
Object^
)
Parameters
- destination
- The destination directory for storing decompressed files.
- preservePath
- true if the directory path of the compressed item is preserved; false otherwise
- overwrite
- Specifies whether to overwrite any existing files.
- state
- User state information.
Return Value
An IAsyncResult that identifies the asynchronous operation.