Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- NullToBooleanConverter.cs
- Byte.cs
- Wizard.cs
- RC2.cs
- IdleTimeoutMonitor.cs
- TdsParameterSetter.cs
- Point.cs
- XmlHierarchyData.cs
- EasingFunctionBase.cs
- __TransparentProxy.cs
- RichTextBox.cs
- DesignerLoader.cs
- SelectionEditingBehavior.cs
- SiteMapPath.cs
- IndividualDeviceConfig.cs
- XmlDigitalSignatureProcessor.cs
- FixedNode.cs
- SmtpReplyReader.cs
- BindableAttribute.cs
- SessionState.cs
- DynamicActivity.cs
- ToolBarOverflowPanel.cs
- TemplatePropertyEntry.cs
- TemplateManager.cs
- DataControlButton.cs
- EntityContainerRelationshipSet.cs
- PageRanges.cs
- MatrixKeyFrameCollection.cs
- VisualTreeUtils.cs
- CreatingCookieEventArgs.cs
- CallSite.cs
- NavigationCommands.cs
- PointUtil.cs
- RedBlackList.cs
- GestureRecognizer.cs
- Highlights.cs
- MonthCalendarDesigner.cs
- ListParagraph.cs
- OdbcError.cs
- HtmlHistory.cs
- FacetDescriptionElement.cs
- Int64.cs
- TransportOutputChannel.cs
- WorkerRequest.cs
- AppDomainAttributes.cs
- Style.cs
- AppDomain.cs
- BaseConfigurationRecord.cs
- WindowsFormsSynchronizationContext.cs
- UserControlParser.cs
- DuplexChannel.cs
- ApplicationFileCodeDomTreeGenerator.cs
- PageAsyncTask.cs
- DataTableReader.cs
- Int64Converter.cs
- PrintDialogException.cs
- ProfessionalColors.cs
- XPathSingletonIterator.cs
- WebPartVerbCollection.cs
- BitmapEffectGroup.cs
- StrokeCollection2.cs
- ParameterBuilder.cs
- FilterableAttribute.cs
- NetTcpSectionData.cs
- Rectangle.cs
- OracleDataAdapter.cs
- HintTextMaxWidthConverter.cs
- CssTextWriter.cs
- Timeline.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- RequestBringIntoViewEventArgs.cs
- FacetValues.cs
- Pair.cs
- LinqDataSourceStatusEventArgs.cs
- NetworkInformationPermission.cs
- ScriptComponentDescriptor.cs
- SingleKeyFrameCollection.cs
- GridLengthConverter.cs
- Profiler.cs
- XdrBuilder.cs
- OracleException.cs
- Misc.cs
- SharedStatics.cs
- AttributeEmitter.cs
- RetrieveVirtualItemEventArgs.cs
- SiteMapProvider.cs
- GAC.cs
- SelectedGridItemChangedEvent.cs
- FixedTextContainer.cs
- AttributeQuery.cs
- UTF8Encoding.cs
- BasePattern.cs
- TaiwanCalendar.cs
- QuaternionRotation3D.cs
- OleDbEnumerator.cs
- CompilationRelaxations.cs
- __Filters.cs
- BuildResultCache.cs
- CachedBitmap.cs
- InternalBufferOverflowException.cs