Zip for WPF and Silverlight
C1.C1Zip Namespace / C1ZipFile Class / MemoryThreshold Property

In This Topic
    MemoryThreshold Property (C1ZipFile)
    In This Topic
    メモリで圧縮される最大ストリームサイズを取得または設定します。
    Syntax
    'Declaration
     
    
    Public Property MemoryThreshold As Integer
    public int MemoryThreshold {get; set;}
    Remarks

    C1ZipFile は、zip ファイルにエントリを追加する前に、一時ストリームにエントリを圧縮します。

    MemoryThreshold バイトより小さいエントリは、一時メモリストリームを使って圧縮されます。

    MemoryThreshold バイトより大きいエントリは、一時ファイルを使って圧縮されます。一時ファイルの場所は、TempFileName プロパティを使って制御できます。

    See Also