Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / IO / compression / GZipStream.cs / 1305376 / GZipStream.cs
namespace System.IO.Compression { using System.IO; using System.Diagnostics; using System.Security.Permissions; public class GZipStream : Stream { private DeflateStream deflateStream; public GZipStream(Stream stream, CompressionMode mode) : this( stream, mode, false) { } public GZipStream(Stream stream, CompressionMode mode, bool leaveOpen) { deflateStream = new DeflateStream(stream, mode, leaveOpen); if (mode == CompressionMode.Compress) { IFileFormatWriter writeCommand = new GZipFormatter(); deflateStream.SetFileFormatWriter(writeCommand); } else { IFileFormatReader readCommand = new GZipDecoder(); deflateStream.SetFileFormatReader(readCommand); } } public override bool CanRead { get { if( deflateStream == null) { return false; } return deflateStream.CanRead; } } public override bool CanWrite { get { if( deflateStream == null) { return false; } return deflateStream.CanWrite; } } public override bool CanSeek { get { if( deflateStream == null) { return false; } return deflateStream.CanSeek; } } public override long Length { get { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } } public override long Position { get { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } set { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } } public override void Flush() { if( deflateStream == null) { throw new ObjectDisposedException(null, SR.GetString(SR.ObjectDisposed_StreamClosed)); } deflateStream.Flush(); return; } public override long Seek(long offset, SeekOrigin origin) { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } public override void SetLength(long value) { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } [HostProtection(ExternalThreading=true)] public override IAsyncResult BeginRead(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.BeginRead(array, offset, count, asyncCallback, asyncState); } public override int EndRead(IAsyncResult asyncResult) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.EndRead(asyncResult); } [HostProtection(ExternalThreading=true)] public override IAsyncResult BeginWrite(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.BeginWrite(array, offset, count, asyncCallback, asyncState); } public override void EndWrite(IAsyncResult asyncResult) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } deflateStream.EndWrite(asyncResult); } public override int Read(byte[] array, int offset, int count) { if( deflateStream == null) { throw new ObjectDisposedException(null, SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.Read(array, offset, count); } public override void Write(byte[] array, int offset, int count) { if( deflateStream == null) { throw new ObjectDisposedException(null, SR.GetString(SR.ObjectDisposed_StreamClosed)); } deflateStream.Write(array, offset, count); } protected override void Dispose(bool disposing) { try { if (disposing && deflateStream != null) { deflateStream.Close(); } deflateStream = null; } finally { base.Dispose(disposing); } } public Stream BaseStream { get { if( deflateStream != null) { return deflateStream.BaseStream; } else { return null; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.IO.Compression { using System.IO; using System.Diagnostics; using System.Security.Permissions; public class GZipStream : Stream { private DeflateStream deflateStream; public GZipStream(Stream stream, CompressionMode mode) : this( stream, mode, false) { } public GZipStream(Stream stream, CompressionMode mode, bool leaveOpen) { deflateStream = new DeflateStream(stream, mode, leaveOpen); if (mode == CompressionMode.Compress) { IFileFormatWriter writeCommand = new GZipFormatter(); deflateStream.SetFileFormatWriter(writeCommand); } else { IFileFormatReader readCommand = new GZipDecoder(); deflateStream.SetFileFormatReader(readCommand); } } public override bool CanRead { get { if( deflateStream == null) { return false; } return deflateStream.CanRead; } } public override bool CanWrite { get { if( deflateStream == null) { return false; } return deflateStream.CanWrite; } } public override bool CanSeek { get { if( deflateStream == null) { return false; } return deflateStream.CanSeek; } } public override long Length { get { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } } public override long Position { get { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } set { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } } public override void Flush() { if( deflateStream == null) { throw new ObjectDisposedException(null, SR.GetString(SR.ObjectDisposed_StreamClosed)); } deflateStream.Flush(); return; } public override long Seek(long offset, SeekOrigin origin) { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } public override void SetLength(long value) { throw new NotSupportedException(SR.GetString(SR.NotSupported)); } [HostProtection(ExternalThreading=true)] public override IAsyncResult BeginRead(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.BeginRead(array, offset, count, asyncCallback, asyncState); } public override int EndRead(IAsyncResult asyncResult) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.EndRead(asyncResult); } [HostProtection(ExternalThreading=true)] public override IAsyncResult BeginWrite(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.BeginWrite(array, offset, count, asyncCallback, asyncState); } public override void EndWrite(IAsyncResult asyncResult) { if( deflateStream == null) { throw new InvalidOperationException(SR.GetString(SR.ObjectDisposed_StreamClosed)); } deflateStream.EndWrite(asyncResult); } public override int Read(byte[] array, int offset, int count) { if( deflateStream == null) { throw new ObjectDisposedException(null, SR.GetString(SR.ObjectDisposed_StreamClosed)); } return deflateStream.Read(array, offset, count); } public override void Write(byte[] array, int offset, int count) { if( deflateStream == null) { throw new ObjectDisposedException(null, SR.GetString(SR.ObjectDisposed_StreamClosed)); } deflateStream.Write(array, offset, count); } protected override void Dispose(bool disposing) { try { if (disposing && deflateStream != null) { deflateStream.Close(); } deflateStream = null; } finally { base.Dispose(disposing); } } public Stream BaseStream { get { if( deflateStream != null) { return deflateStream.BaseStream; } else { return null; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MetadataItem.cs
- ValidatingPropertiesEventArgs.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ThemeInfoAttribute.cs
- DetailsViewRowCollection.cs
- SessionEndedEventArgs.cs
- OdbcParameterCollection.cs
- CurrentTimeZone.cs
- TimeEnumHelper.cs
- SupportingTokenSecurityTokenResolver.cs
- SqlDataSourceQueryEditor.cs
- Brushes.cs
- ContentType.cs
- OdbcErrorCollection.cs
- SqlStream.cs
- SpellerInterop.cs
- SQLInt16.cs
- Run.cs
- HtmlTableCell.cs
- TextRangeAdaptor.cs
- GridViewCellAutomationPeer.cs
- RuleProcessor.cs
- TypeResolver.cs
- RootBrowserWindow.cs
- ClientSideProviderDescription.cs
- OneOfElement.cs
- ControlBindingsCollection.cs
- SignatureResourcePool.cs
- ApplicationContext.cs
- BaseInfoTable.cs
- PropertyChangedEventManager.cs
- WebPartCollection.cs
- GridViewRowCollection.cs
- ResXResourceWriter.cs
- StylusPlugin.cs
- DatagridviewDisplayedBandsData.cs
- WebRequestModuleElementCollection.cs
- DateRangeEvent.cs
- XsdBuilder.cs
- HtmlMobileTextWriter.cs
- basecomparevalidator.cs
- SequenceDesigner.xaml.cs
- CompoundFileIOPermission.cs
- HttpSessionStateBase.cs
- UmAlQuraCalendar.cs
- SoapSchemaMember.cs
- InternalUserCancelledException.cs
- LookupNode.cs
- ToolBarOverflowPanel.cs
- PackageRelationshipCollection.cs
- ImageInfo.cs
- OverflowException.cs
- CodeDefaultValueExpression.cs
- PageBreakRecord.cs
- XmlSchemaSimpleTypeList.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- Encoder.cs
- DesignTimeVisibleAttribute.cs
- PolicyException.cs
- TableNameAttribute.cs
- MenuEventArgs.cs
- HwndHostAutomationPeer.cs
- control.ime.cs
- StaticContext.cs
- ListViewTableRow.cs
- RenamedEventArgs.cs
- Margins.cs
- ErrorFormatter.cs
- Size3D.cs
- InputBinder.cs
- Int32CollectionConverter.cs
- BuildProvider.cs
- HttpListenerRequest.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- ProfileSettings.cs
- DesignerTransactionCloseEvent.cs
- WebEventTraceProvider.cs
- UnsafeNativeMethods.cs
- COM2FontConverter.cs
- HMACSHA384.cs
- MutableAssemblyCacheEntry.cs
- WebSysDescriptionAttribute.cs
- RSAOAEPKeyExchangeFormatter.cs
- UiaCoreTypesApi.cs
- AuthenticationSection.cs
- SQLDoubleStorage.cs
- TimeSpanFormat.cs
- PixelFormat.cs
- TempEnvironment.cs
- RowUpdatedEventArgs.cs
- TextFormatterHost.cs
- ChannelPoolSettings.cs
- FloatUtil.cs
- SoapHeaders.cs
- AutomationProperties.cs
- XamlTypeMapper.cs
- BoolExpressionVisitors.cs
- ChannelPoolSettingsElement.cs
- ObjectHandle.cs
- LinqDataSourceContextData.cs