Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Net / System / Net / Mail / DelegatedStream.cs / 1 / DelegatedStream.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { using System; using System.Net.Sockets; using System.IO; internal class DelegatedStream : Stream { Stream stream; NetworkStream netStream; protected DelegatedStream() { } protected DelegatedStream(Stream stream) { if (stream == null) throw new ArgumentNullException("stream"); this.stream = stream; netStream = stream as NetworkStream; } protected Stream BaseStream { get { return this.stream; } } public override bool CanRead { get { return this.stream.CanRead; } } public override bool CanSeek { get { return this.stream.CanSeek; } } public override bool CanWrite { get { return this.stream.CanWrite; } } public override long Length { get { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); return this.stream.Length; } } public override long Position { get { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); return this.stream.Position; } set { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); this.stream.Position = value; } } public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { if (!CanRead) throw new NotSupportedException(SR.GetString(SR.ReadNotSupported)); IAsyncResult result = null; if(netStream != null){ result = this.netStream.UnsafeBeginRead (buffer, offset, count, callback, state); } else{ result = this.stream.BeginRead (buffer, offset, count, callback, state); } return result; } public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { if (!CanWrite) throw new NotSupportedException(SR.GetString(SR.WriteNotSupported)); IAsyncResult result = null; if(netStream != null){ result = this.netStream.UnsafeBeginWrite(buffer, offset, count, callback, state); } else{ result = this.stream.BeginWrite (buffer, offset, count, callback, state); } return result; } //This calls close on the inner stream //however, the stream may not be actually closed, but simpy flushed public override void Close() { this.stream.Close(); } public override int EndRead(IAsyncResult asyncResult) { if (!CanRead) throw new NotSupportedException(SR.GetString(SR.ReadNotSupported)); int read = this.stream.EndRead (asyncResult); return read; } public override void EndWrite(IAsyncResult asyncResult) { if (!CanWrite) throw new NotSupportedException(SR.GetString(SR.WriteNotSupported)); this.stream.EndWrite (asyncResult); } public override void Flush() { this.stream.Flush(); } public override int Read(byte[] buffer, int offset, int count) { if (!CanRead) throw new NotSupportedException(SR.GetString(SR.ReadNotSupported)); int read = this.stream.Read(buffer, offset, count); return read; } public override long Seek(long offset, SeekOrigin origin) { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); long position = this.stream.Seek(offset, origin); return position; } public override void SetLength(long value) { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); this.stream.SetLength(value); } public override void Write(byte[] buffer, int offset, int count) { if (!CanWrite) throw new NotSupportedException(SR.GetString(SR.WriteNotSupported)); this.stream.Write(buffer, offset, count); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { using System; using System.Net.Sockets; using System.IO; internal class DelegatedStream : Stream { Stream stream; NetworkStream netStream; protected DelegatedStream() { } protected DelegatedStream(Stream stream) { if (stream == null) throw new ArgumentNullException("stream"); this.stream = stream; netStream = stream as NetworkStream; } protected Stream BaseStream { get { return this.stream; } } public override bool CanRead { get { return this.stream.CanRead; } } public override bool CanSeek { get { return this.stream.CanSeek; } } public override bool CanWrite { get { return this.stream.CanWrite; } } public override long Length { get { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); return this.stream.Length; } } public override long Position { get { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); return this.stream.Position; } set { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); this.stream.Position = value; } } public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { if (!CanRead) throw new NotSupportedException(SR.GetString(SR.ReadNotSupported)); IAsyncResult result = null; if(netStream != null){ result = this.netStream.UnsafeBeginRead (buffer, offset, count, callback, state); } else{ result = this.stream.BeginRead (buffer, offset, count, callback, state); } return result; } public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { if (!CanWrite) throw new NotSupportedException(SR.GetString(SR.WriteNotSupported)); IAsyncResult result = null; if(netStream != null){ result = this.netStream.UnsafeBeginWrite(buffer, offset, count, callback, state); } else{ result = this.stream.BeginWrite (buffer, offset, count, callback, state); } return result; } //This calls close on the inner stream //however, the stream may not be actually closed, but simpy flushed public override void Close() { this.stream.Close(); } public override int EndRead(IAsyncResult asyncResult) { if (!CanRead) throw new NotSupportedException(SR.GetString(SR.ReadNotSupported)); int read = this.stream.EndRead (asyncResult); return read; } public override void EndWrite(IAsyncResult asyncResult) { if (!CanWrite) throw new NotSupportedException(SR.GetString(SR.WriteNotSupported)); this.stream.EndWrite (asyncResult); } public override void Flush() { this.stream.Flush(); } public override int Read(byte[] buffer, int offset, int count) { if (!CanRead) throw new NotSupportedException(SR.GetString(SR.ReadNotSupported)); int read = this.stream.Read(buffer, offset, count); return read; } public override long Seek(long offset, SeekOrigin origin) { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); long position = this.stream.Seek(offset, origin); return position; } public override void SetLength(long value) { if (!CanSeek) throw new NotSupportedException(SR.GetString(SR.SeekNotSupported)); this.stream.SetLength(value); } public override void Write(byte[] buffer, int offset, int count) { if (!CanWrite) throw new NotSupportedException(SR.GetString(SR.WriteNotSupported)); this.stream.Write(buffer, offset, count); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NestPullup.cs
- EntityDataSourceSelectedEventArgs.cs
- OrderedDictionary.cs
- WebPartConnectionsConfigureVerb.cs
- XpsLiterals.cs
- SerializeAbsoluteContext.cs
- FileDialogCustomPlace.cs
- ColorBlend.cs
- UpdateProgress.cs
- IListConverters.cs
- MessageQueueEnumerator.cs
- ListView.cs
- FrameworkContentElement.cs
- Expressions.cs
- PathStreamGeometryContext.cs
- altserialization.cs
- Material.cs
- BooleanAnimationUsingKeyFrames.cs
- SubMenuStyleCollection.cs
- ColumnHeader.cs
- ContainerParaClient.cs
- ObjectSpanRewriter.cs
- PositiveTimeSpanValidator.cs
- WindowsContainer.cs
- CfgRule.cs
- MissingSatelliteAssemblyException.cs
- Padding.cs
- ZipIOFileItemStream.cs
- ConfigurationFileMap.cs
- ObjectManager.cs
- AffineTransform3D.cs
- TypeNameConverter.cs
- ToolStripDropDownClosedEventArgs.cs
- ForceCopyBuildProvider.cs
- StringValidator.cs
- SoapHeaderAttribute.cs
- ContentType.cs
- ButtonBase.cs
- FlowThrottle.cs
- PeerApplicationLaunchInfo.cs
- BinaryFormatter.cs
- securitycriticaldataformultiplegetandset.cs
- RenderCapability.cs
- AttributeUsageAttribute.cs
- OdbcErrorCollection.cs
- AddInControllerImpl.cs
- RectConverter.cs
- Quaternion.cs
- TransportDefaults.cs
- StringBuilder.cs
- DataGridHelper.cs
- CompositeCollection.cs
- TextEndOfParagraph.cs
- ModifiableIteratorCollection.cs
- PublisherIdentityPermission.cs
- CodeTypeReference.cs
- FormsIdentity.cs
- Evidence.cs
- ConstNode.cs
- CodeExporter.cs
- XmlSchemaAnnotation.cs
- Cursor.cs
- DrawingContext.cs
- DockPattern.cs
- TreeViewEvent.cs
- EventLogLink.cs
- UInt16Storage.cs
- BlurEffect.cs
- storagemappingitemcollection.viewdictionary.cs
- CellPartitioner.cs
- SqlPersonalizationProvider.cs
- DescendantOverDescendantQuery.cs
- StorageEntitySetMapping.cs
- RelationalExpressions.cs
- Int32AnimationUsingKeyFrames.cs
- DesignerForm.cs
- StaticFileHandler.cs
- RegexRunnerFactory.cs
- DaylightTime.cs
- LinkClickEvent.cs
- ColumnWidthChangedEvent.cs
- CodeTypeDeclarationCollection.cs
- InternalMappingException.cs
- TcpHostedTransportConfiguration.cs
- RectangleGeometry.cs
- ConfigurationManagerHelper.cs
- TextContainer.cs
- Composition.cs
- MenuCommand.cs
- PackageFilter.cs
- COM2ExtendedBrowsingHandler.cs
- OutputCacheSection.cs
- SupportsPreviewControlAttribute.cs
- OdbcError.cs
- ContextDataSource.cs
- ConsoleTraceListener.cs
- BinaryExpressionHelper.cs
- SoapFormatterSinks.cs
- DataGridViewCellLinkedList.cs
- ComponentResourceKeyConverter.cs