Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / IO / UnmanagedMemoryStreamWrapper.cs / 1 / UnmanagedMemoryStreamWrapper.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: UnmanagedMemoryStreamWrapper ** ** Purpose: Create a Memorystream over an UnmanagedMemoryStream ** ===========================================================*/ using System; using System.Runtime.InteropServices; using System.Security.Permissions; namespace System.IO { // Needed for backwards compatibility with V1.x usages of the // ResourceManager, where a MemoryStream is now returned as an // UnmanagedMemoryStream from ResourceReader. internal sealed class UnmanagedMemoryStreamWrapper : MemoryStream { private UnmanagedMemoryStream _unmanagedStream; internal UnmanagedMemoryStreamWrapper(UnmanagedMemoryStream stream) { _unmanagedStream = stream; } public override bool CanRead { get { return _unmanagedStream.CanRead; } } public override bool CanSeek { get { return _unmanagedStream.CanSeek; } } public override bool CanWrite { get { return _unmanagedStream.CanWrite; } } protected override void Dispose(bool disposing) { try { if (disposing) _unmanagedStream.Close(); } finally { base.Dispose(disposing); } } public override void Flush() { _unmanagedStream.Flush(); } public override byte[] GetBuffer() { throw new UnauthorizedAccessException(Environment.GetResourceString("UnauthorizedAccess_MemStreamBuffer")); } public override int Capacity { get { return (int) _unmanagedStream.Capacity; } set { throw new IOException(Environment.GetResourceString("IO.IO_FixedCapacity")); } } public override long Length { get { return _unmanagedStream.Length; } } public override long Position { get { return _unmanagedStream.Position; } set { _unmanagedStream.Position = value; } } public override int Read([In, Out] byte[] buffer, int offset, int count) { return _unmanagedStream.Read(buffer, offset, count); } public override int ReadByte() { return _unmanagedStream.ReadByte(); } public override long Seek(long offset, SeekOrigin loc) { return _unmanagedStream.Seek(offset, loc); } public unsafe override byte[] ToArray() { if (!_unmanagedStream._isOpen) __Error.StreamIsClosed(); if (!_unmanagedStream.CanRead) __Error.ReadNotSupported(); byte[] buffer = new byte[_unmanagedStream.Length]; Buffer.memcpy(_unmanagedStream.Pointer, 0, buffer, 0, (int) _unmanagedStream.Length); return buffer; } public override void Write(byte[] buffer, int offset, int count) { _unmanagedStream.Write(buffer, offset, count); } public override void WriteByte(byte value) { _unmanagedStream.WriteByte(value); } // Writes this MemoryStream to another stream. public unsafe override void WriteTo(Stream stream) { if (!_unmanagedStream._isOpen) __Error.StreamIsClosed(); if (!_unmanagedStream.CanRead) __Error.ReadNotSupported(); if (stream==null) throw new ArgumentNullException("stream", Environment.GetResourceString("ArgumentNull_Stream")); byte[] buffer = ToArray(); stream.Write(buffer, 0, buffer.Length); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QueryConverter.cs
- XmlSchemaSimpleContentRestriction.cs
- ISO2022Encoding.cs
- RuleSettingsCollection.cs
- sortedlist.cs
- EncryptedReference.cs
- grammarelement.cs
- CompressEmulationStream.cs
- SinglePageViewer.cs
- ModelFunctionTypeElement.cs
- KerberosTicketHashIdentifierClause.cs
- TCPClient.cs
- DocumentGridPage.cs
- X509CertificateTrustedIssuerElementCollection.cs
- SHA256Managed.cs
- FrameSecurityDescriptor.cs
- SHA256CryptoServiceProvider.cs
- CollectionConverter.cs
- LayoutDump.cs
- XmlElementCollection.cs
- AsyncContentLoadedEventArgs.cs
- StylusPointPropertyInfoDefaults.cs
- ToolBarButton.cs
- TemplateKey.cs
- WebPartEditVerb.cs
- InvalidEnumArgumentException.cs
- PrinterSettings.cs
- ServerValidateEventArgs.cs
- StrokeNodeData.cs
- FixedSOMFixedBlock.cs
- CategoryAttribute.cs
- AutoResizedEvent.cs
- HashSet.cs
- SQLInt16.cs
- TransportSecurityBindingElement.cs
- InputDevice.cs
- IImplicitResourceProvider.cs
- SequentialWorkflowHeaderFooter.cs
- DockPattern.cs
- COM2FontConverter.cs
- _NetworkingPerfCounters.cs
- XsdDateTime.cs
- SingleResultAttribute.cs
- XmlSubtreeReader.cs
- WindowsTitleBar.cs
- ProtectedUri.cs
- webproxy.cs
- WindowsListViewGroupHelper.cs
- SiteMapDataSourceView.cs
- BinaryMessageEncodingElement.cs
- GreenMethods.cs
- Parser.cs
- AnimatedTypeHelpers.cs
- VoiceChangeEventArgs.cs
- MessageDecoder.cs
- Enum.cs
- FlowDocumentScrollViewer.cs
- EventLogTraceListener.cs
- Image.cs
- TransformerTypeCollection.cs
- Int64KeyFrameCollection.cs
- CqlGenerator.cs
- IEnumerable.cs
- HtmlGenericControl.cs
- MethodBuilder.cs
- ScriptingScriptResourceHandlerSection.cs
- MarshalByValueComponent.cs
- Component.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- FieldNameLookup.cs
- BitmapVisualManager.cs
- HttpNamespaceReservationInstallComponent.cs
- HandledEventArgs.cs
- ResourceDescriptionAttribute.cs
- DocumentAutomationPeer.cs
- RayMeshGeometry3DHitTestResult.cs
- TextRangeProviderWrapper.cs
- TextRunTypographyProperties.cs
- ColorKeyFrameCollection.cs
- AssociationProvider.cs
- HwndAppCommandInputProvider.cs
- SerializationInfo.cs
- DateBoldEvent.cs
- DataSourceSelectArguments.cs
- WebPartVerb.cs
- SubMenuStyle.cs
- InteropExecutor.cs
- BasicViewGenerator.cs
- AnonymousIdentificationSection.cs
- FixedMaxHeap.cs
- nulltextnavigator.cs
- TextInfo.cs
- DataContract.cs
- WindowsTreeView.cs
- FixedPosition.cs
- StyleCollectionEditor.cs
- figurelength.cs
- HtmlTernaryTree.cs
- NumericExpr.cs
- FacetValueContainer.cs