Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / DataStreamFromComStream.cs / 1 / DataStreamFromComStream.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.IO; ////// /// /// internal class DataStreamFromComStream : Stream { private UnsafeNativeMethods.IStream comStream; public DataStreamFromComStream(UnsafeNativeMethods.IStream comStream) : base() { this.comStream = comStream; } public override long Position { get { return Seek(0, SeekOrigin.Current); } set { Seek(value, SeekOrigin.Begin); } } public override bool CanWrite { get { return true; } } public override bool CanSeek { get { return true; } } public override bool CanRead { get { return true; } } public override long Length { get { long curPos = this.Position; long endPos = Seek(0, SeekOrigin.End); this.Position = curPos; return endPos - curPos; } } /* private void _NotImpl(string message) { NotSupportedException ex = new NotSupportedException(message, new ExternalException(SR.GetString(SR.ExternalException), NativeMethods.E_NOTIMPL)); throw ex; } */ private unsafe int _Read(void* handle, int bytes) { return comStream.Read((IntPtr)handle, bytes); } private unsafe int _Write(void* handle, int bytes) { return comStream.Write((IntPtr)handle, bytes); } public override void Flush() { } public unsafe override int Read(byte[] buffer, int index, int count) { int bytesRead = 0; if (count > 0 && index >= 0 && (count + index) <= buffer.Length) { fixed (byte* ch = buffer) { bytesRead = _Read((void*)(ch + index), count); } } return bytesRead; } public override void SetLength(long value) { comStream.SetSize(value); } public override long Seek(long offset, SeekOrigin origin) { return comStream.Seek(offset, (int)origin); } public unsafe override void Write(byte[] buffer, int index, int count) { int bytesWritten = 0; if (count > 0 && index >= 0 && (count + index) <= buffer.Length) { try { fixed (byte* b = buffer) { bytesWritten = _Write((void*)(b + index), count); } } catch { } } if (bytesWritten < count) { throw new IOException(SR.GetString(SR.DataStreamWrite)); } } protected override void Dispose(bool disposing) { try { if (disposing && comStream != null) { try { comStream.Commit(NativeMethods.STGC_DEFAULT); } catch(Exception) { } } // Can't release a COM stream from the finalizer thread. comStream = null; } finally { base.Dispose(disposing); } } ~DataStreamFromComStream() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.IO; ////// /// /// internal class DataStreamFromComStream : Stream { private UnsafeNativeMethods.IStream comStream; public DataStreamFromComStream(UnsafeNativeMethods.IStream comStream) : base() { this.comStream = comStream; } public override long Position { get { return Seek(0, SeekOrigin.Current); } set { Seek(value, SeekOrigin.Begin); } } public override bool CanWrite { get { return true; } } public override bool CanSeek { get { return true; } } public override bool CanRead { get { return true; } } public override long Length { get { long curPos = this.Position; long endPos = Seek(0, SeekOrigin.End); this.Position = curPos; return endPos - curPos; } } /* private void _NotImpl(string message) { NotSupportedException ex = new NotSupportedException(message, new ExternalException(SR.GetString(SR.ExternalException), NativeMethods.E_NOTIMPL)); throw ex; } */ private unsafe int _Read(void* handle, int bytes) { return comStream.Read((IntPtr)handle, bytes); } private unsafe int _Write(void* handle, int bytes) { return comStream.Write((IntPtr)handle, bytes); } public override void Flush() { } public unsafe override int Read(byte[] buffer, int index, int count) { int bytesRead = 0; if (count > 0 && index >= 0 && (count + index) <= buffer.Length) { fixed (byte* ch = buffer) { bytesRead = _Read((void*)(ch + index), count); } } return bytesRead; } public override void SetLength(long value) { comStream.SetSize(value); } public override long Seek(long offset, SeekOrigin origin) { return comStream.Seek(offset, (int)origin); } public unsafe override void Write(byte[] buffer, int index, int count) { int bytesWritten = 0; if (count > 0 && index >= 0 && (count + index) <= buffer.Length) { try { fixed (byte* b = buffer) { bytesWritten = _Write((void*)(b + index), count); } } catch { } } if (bytesWritten < count) { throw new IOException(SR.GetString(SR.DataStreamWrite)); } } protected override void Dispose(bool disposing) { try { if (disposing && comStream != null) { try { comStream.Commit(NativeMethods.STGC_DEFAULT); } catch(Exception) { } } // Can't release a COM stream from the finalizer thread. comStream = null; } finally { base.Dispose(disposing); } } ~DataStreamFromComStream() { Dispose(false); } } } // 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
- PointAnimationClockResource.cs
- ParameterBuilder.cs
- FontStretch.cs
- GeneratedContractType.cs
- Request.cs
- ScriptControlManager.cs
- EventLogPermission.cs
- ValidatorCompatibilityHelper.cs
- AssociationTypeEmitter.cs
- VarInfo.cs
- XmlReaderSettings.cs
- TabControlAutomationPeer.cs
- XmlEncodedRawTextWriter.cs
- CompletedAsyncResult.cs
- MenuTracker.cs
- ImpersonateTokenRef.cs
- ReadOnlyCollection.cs
- RefreshPropertiesAttribute.cs
- LiteralText.cs
- QilFactory.cs
- FilterQueryOptionExpression.cs
- AsymmetricCryptoHandle.cs
- XPathArrayIterator.cs
- SoapParser.cs
- Events.cs
- COAUTHIDENTITY.cs
- xdrvalidator.cs
- ElementNotEnabledException.cs
- Point.cs
- Bitmap.cs
- WindowsGraphicsWrapper.cs
- WithParamAction.cs
- DefaultShape.cs
- BitmapSource.cs
- SpecularMaterial.cs
- MimeXmlReflector.cs
- DesignerActionItemCollection.cs
- SqlNamer.cs
- SQLInt32Storage.cs
- ToolStripGrip.cs
- EventsTab.cs
- EventBuilder.cs
- XPathParser.cs
- Adorner.cs
- GridViewRowCollection.cs
- ReadOnlyAttribute.cs
- CodeIterationStatement.cs
- BooleanProjectedSlot.cs
- DateTimeParse.cs
- ConfigurationPermission.cs
- PropertyTab.cs
- XmlQuerySequence.cs
- QilPatternFactory.cs
- IDReferencePropertyAttribute.cs
- typedescriptorpermission.cs
- CultureInfoConverter.cs
- FilterException.cs
- IPipelineRuntime.cs
- COM2ExtendedUITypeEditor.cs
- SqlClientFactory.cs
- SessionSwitchEventArgs.cs
- SoapIgnoreAttribute.cs
- SQLConvert.cs
- BehaviorEditorPart.cs
- OleServicesContext.cs
- HyperLinkField.cs
- ServiceModelEnhancedConfigurationElementCollection.cs
- TriggerAction.cs
- TextEditorTyping.cs
- Propagator.ExtentPlaceholderCreator.cs
- MsmqIntegrationChannelListener.cs
- DnsPermission.cs
- DataControlPagerLinkButton.cs
- FilterQuery.cs
- Atom10FormatterFactory.cs
- CollectionConverter.cs
- Directory.cs
- GeneralTransform3DCollection.cs
- Int32Converter.cs
- OpenFileDialog.cs
- ReadOnlyHierarchicalDataSourceView.cs
- isolationinterop.cs
- CardSpaceException.cs
- Geometry.cs
- SettingsProperty.cs
- AnnotationObservableCollection.cs
- XappLauncher.cs
- DownloadProgressEventArgs.cs
- DSASignatureDeformatter.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- CompoundFileStorageReference.cs
- PrimaryKeyTypeConverter.cs
- TickBar.cs
- XsdDateTime.cs
- OleCmdHelper.cs
- SharedUtils.cs
- Parallel.cs
- Overlapped.cs
- HierarchicalDataSourceControl.cs
- CellCreator.cs