Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / IO / UnmanagedMemoryStreamWrapper.cs / 1305376 / 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;
using System.Diagnostics.Contracts;
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 {
[Pure]
get { return _unmanagedStream.CanRead; }
}
public override bool CanSeek {
[Pure]
get { return _unmanagedStream.CanSeek; }
}
public override bool CanWrite {
[Pure]
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);
}
[System.Security.SecuritySafeCritical] // auto-generated
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 (stream==null)
throw new ArgumentNullException("stream", Environment.GetResourceString("ArgumentNull_Stream"));
Contract.EndContractBlock();
if (!_unmanagedStream._isOpen) __Error.StreamIsClosed();
if (!CanRead) __Error.ReadNotSupported();
byte[] buffer = ToArray();
stream.Write(buffer, 0, buffer.Length);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++==
//
// 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;
using System.Diagnostics.Contracts;
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 {
[Pure]
get { return _unmanagedStream.CanRead; }
}
public override bool CanSeek {
[Pure]
get { return _unmanagedStream.CanSeek; }
}
public override bool CanWrite {
[Pure]
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);
}
[System.Security.SecuritySafeCritical] // auto-generated
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 (stream==null)
throw new ArgumentNullException("stream", Environment.GetResourceString("ArgumentNull_Stream"));
Contract.EndContractBlock();
if (!_unmanagedStream._isOpen) __Error.StreamIsClosed();
if (!CanRead) __Error.ReadNotSupported();
byte[] buffer = ToArray();
stream.Write(buffer, 0, buffer.Length);
}
}
}
// 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
- MonthChangedEventArgs.cs
- DataConnectionHelper.cs
- IgnoreFileBuildProvider.cs
- Pair.cs
- XpsS0ValidatingLoader.cs
- HtmlInputRadioButton.cs
- _Semaphore.cs
- ReadOnlyTernaryTree.cs
- FontCacheLogic.cs
- ConfigurationManager.cs
- EntityProviderFactory.cs
- JoinTreeNode.cs
- StatusBarPanelClickEvent.cs
- KeyGesture.cs
- FontDriver.cs
- Imaging.cs
- XmlDataSource.cs
- SymbolMethod.cs
- TypeDescriptionProviderAttribute.cs
- XmlSigningNodeWriter.cs
- COM2ExtendedTypeConverter.cs
- TraceLevelStore.cs
- SqlProfileProvider.cs
- WebRequestModuleElement.cs
- XmlDataSourceNodeDescriptor.cs
- WebPartsSection.cs
- DataGridViewElement.cs
- Timeline.cs
- ProfileServiceManager.cs
- SinglePageViewer.cs
- PathGradientBrush.cs
- BitmapInitialize.cs
- LinearGradientBrush.cs
- ProcessThreadCollection.cs
- StylusPointPropertyId.cs
- KnownBoxes.cs
- HtmlInputPassword.cs
- ListViewContainer.cs
- StackSpiller.Temps.cs
- TransformerTypeCollection.cs
- SqlBuilder.cs
- StorageInfo.cs
- WebScriptEnablingBehavior.cs
- CompositeTypefaceMetrics.cs
- ApplyHostConfigurationBehavior.cs
- StaticExtension.cs
- ResolveDuplexCD1AsyncResult.cs
- OleDbReferenceCollection.cs
- CodeLabeledStatement.cs
- DbReferenceCollection.cs
- BitVector32.cs
- SmtpDigestAuthenticationModule.cs
- Table.cs
- UntypedNullExpression.cs
- SQLString.cs
- OuterGlowBitmapEffect.cs
- DesignTimeDataBinding.cs
- ControlIdConverter.cs
- Size.cs
- WindowVisualStateTracker.cs
- DateTimeOffset.cs
- ExpressionBuilder.cs
- ExceptionWrapper.cs
- GroupBoxAutomationPeer.cs
- Base64Decoder.cs
- TargetPerspective.cs
- ListViewGroupItemCollection.cs
- ArrangedElement.cs
- BamlTreeNode.cs
- FlowDocumentPage.cs
- Model3DGroup.cs
- Processor.cs
- COM2FontConverter.cs
- TextReader.cs
- WebRequestModulesSection.cs
- BitmapEncoder.cs
- SparseMemoryStream.cs
- Rect3DConverter.cs
- CoreChannel.cs
- UInt32Converter.cs
- ReferenceService.cs
- DependencyObjectType.cs
- HandleExceptionArgs.cs
- HtmlDocument.cs
- SessionStateUtil.cs
- BlurBitmapEffect.cs
- Panel.cs
- PasswordRecovery.cs
- TrackingRecord.cs
- RepeaterCommandEventArgs.cs
- WCFBuildProvider.cs
- HttpWebResponse.cs
- ErrorWebPart.cs
- AppDomainResourcePerfCounters.cs
- XmlDataDocument.cs
- Events.cs
- StaticTextPointer.cs
- RowToParametersTransformer.cs
- RevocationPoint.cs
- ByteConverter.cs