Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- FieldToken.cs
- ConfigurationSectionCollection.cs
- TemplateControlParser.cs
- ThicknessConverter.cs
- EnumerableValidator.cs
- TcpPortSharing.cs
- RoutedEvent.cs
- SqlAliasesReferenced.cs
- SqlConnectionFactory.cs
- MimeReturn.cs
- ArgumentException.cs
- SQLBinaryStorage.cs
- HttpRuntime.cs
- MarkupObject.cs
- WebPartCollection.cs
- TypeBuilder.cs
- SchemaMapping.cs
- RoutedCommand.cs
- ScriptModule.cs
- CompilerWrapper.cs
- EncoderParameters.cs
- Misc.cs
- HttpCapabilitiesEvaluator.cs
- DataSourceXmlClassAttribute.cs
- GridViewDeleteEventArgs.cs
- ThicknessConverter.cs
- CollectionBuilder.cs
- ArrangedElement.cs
- EnumUnknown.cs
- ListBindableAttribute.cs
- StdValidatorsAndConverters.cs
- ListBindingHelper.cs
- ExpressionList.cs
- CommandLibraryHelper.cs
- TextEditorMouse.cs
- QuotedPrintableStream.cs
- Int64Animation.cs
- ProxyGenerationError.cs
- InvokeAction.cs
- TableCellCollection.cs
- NamespaceTable.cs
- TrustLevel.cs
- AssemblyHash.cs
- UpdatePanelTriggerCollection.cs
- UnsafeNativeMethods.cs
- FileDialogCustomPlace.cs
- SourceFileInfo.cs
- CodeTypeParameterCollection.cs
- PerspectiveCamera.cs
- WindowsStreamSecurityUpgradeProvider.cs
- LabelEditEvent.cs
- EventWaitHandle.cs
- RecognitionResult.cs
- XmlDocument.cs
- ClientProxyGenerator.cs
- DeclarationUpdate.cs
- Row.cs
- OrderedDictionary.cs
- TemplateControlBuildProvider.cs
- OleDbTransaction.cs
- DataViewManagerListItemTypeDescriptor.cs
- Message.cs
- ObjectQueryProvider.cs
- PropertyChangedEventArgs.cs
- WindowsToolbarItemAsMenuItem.cs
- BehaviorEditorPart.cs
- Property.cs
- PKCS1MaskGenerationMethod.cs
- RuntimeHelpers.cs
- NullableDecimalAverageAggregationOperator.cs
- HtmlObjectListAdapter.cs
- NameTable.cs
- SiteMapSection.cs
- UIntPtr.cs
- WinEventHandler.cs
- FileAuthorizationModule.cs
- COM2DataTypeToManagedDataTypeConverter.cs
- EdmValidator.cs
- InlineUIContainer.cs
- PageAsyncTask.cs
- BaseDataListPage.cs
- XamlPointCollectionSerializer.cs
- InternalConfigSettingsFactory.cs
- MultiByteCodec.cs
- ExpandedWrapper.cs
- LocatorBase.cs
- TransactionManager.cs
- Vector.cs
- _ListenerAsyncResult.cs
- UnknownWrapper.cs
- ShutDownListener.cs
- PrintControllerWithStatusDialog.cs
- NodeInfo.cs
- GridItem.cs
- BaseTemplateCodeDomTreeGenerator.cs
- EntityConnectionStringBuilderItem.cs
- NotifyCollectionChangedEventArgs.cs
- _Events.cs
- SaveWorkflowCommand.cs
- DecoderExceptionFallback.cs