.NET Components
Chilkat .NET Components for Email, Zip Compression, Encryption, XML, S/MIME, and Character Encoding Conversion

Back to Zip Class Summary

Zip::AppendBase64

Creates a new Zip entry and initializes it with already-compressed data that is Base64 encoded. (The ZipEntry.CopyBase64 method can be used to retrieve the compressed data in Base64 format.)

  Declarations  
    [Visual Basic]
Public Function AppendBase64(ByVal String fileName , ByVal String compressedEncodedData) As ZipEntry

[C#]
public ZipEntry AppendBase64(string fileName , string compressedEncodedData);

[C++]
public ZipEntry *AppendBase64(String *fileName , String *compressedEncodedData);

[JScript]
public function AppendBase64(String fileName , String compressedEncodedData) : ZipEntry
 
  Parameters  
   
fileName
The appended data will have this filename. If it is unzipped, this is the name of the file that would be created.
compressedEncodedData
The already-compressed Base64-encoded memory data.
 

Copyright 2002, Chilkat Software, Inc. All Rights Reserved.