本文整理汇总了C#中System.IO.Compression.GZipStream.SetLength方法的典型用法代码示例。如果您正苦于以下问题:C# GZipStream.SetLength方法的具体用法?C# GZipStream.SetLength怎么用?C# GZipStream.SetLength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.IO.Compression.GZipStream
的用法示例。
在下文中一共展示了GZipStream.SetLength方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CheckSetLengthProp
public void CheckSetLengthProp () {
byte [] data = {0x1f, 0x8b, 0x08, 0x08, 0x70, 0xbb, 0x5d, 0x41, 0x00, 0x03, 0x74, 0x65, 0x73, 0x74, 0x00, 0xf3, 0x48, 0xcd, 0xc9, 0xc9, 0xe7, 0x02, 0x00, 0x16, 0x35, 0x96, 0x31, 0x06, 0x00, 0x00, 0x00 };
MemoryStream backing = new MemoryStream (data);
GZipStream decompressing = new GZipStream (backing, CompressionMode.Decompress);
decompressing.SetLength (20);
}
示例2: TestSeekMethodsCompress
public static void TestSeekMethodsCompress()
{
var ms = new MemoryStream();
var zip = new GZipStream(ms, CompressionMode.Compress);
Assert.False(zip.CanSeek);
Assert.Throws<NotSupportedException>(delegate { long value = zip.Length; });
Assert.Throws<NotSupportedException>(delegate { long value = zip.Position; });
Assert.Throws<NotSupportedException>(delegate { zip.Position = 100L; });
Assert.Throws<NotSupportedException>(delegate { zip.SetLength(100L); });
//Should we try all the enums? doesn't seem necessary
Assert.Throws<NotSupportedException>(delegate { zip.Seek(100L, SeekOrigin.Begin); });
}
示例3: CheckSetLengthProp
public void CheckSetLengthProp ()
{
MemoryStream backing = new MemoryStream (compressed_data);
GZipStream decompressing = new GZipStream (backing, CompressionMode.Decompress);
decompressing.SetLength (20);
}