Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / IO / PinnedBufferMemoryStream.cs / 1305376 / PinnedBufferMemoryStream.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: PinnedBufferMemoryStream
**
** [....]
**
**
** Purpose: Pins a byte[], exposing it as an unmanaged memory
** stream. Used in ResourceReader for corner cases.
**
**
===========================================================*/
using System;
using System.Runtime.InteropServices;
using System.Diagnostics.Contracts;
namespace System.IO {
internal sealed unsafe class PinnedBufferMemoryStream : UnmanagedMemoryStream
{
private byte[] _array;
private GCHandle _pinningHandle;
// The new inheritance model requires a Critical default ctor since base (UnmanagedMemoryStream) has one
[System.Security.SecurityCritical]
private PinnedBufferMemoryStream():base(){}
[System.Security.SecurityCritical] // auto-generated
internal PinnedBufferMemoryStream(byte[] array)
{
Contract.Assert(array != null, "Array can't be null");
int len = array.Length;
// Handle 0 length byte arrays specially.
if (len == 0) {
array = new byte[1];
len = 0;
}
_array = array;
_pinningHandle = new GCHandle(array, GCHandleType.Pinned);
// Now the byte[] is pinned for the lifetime of this instance.
// But I also need to get a pointer to that block of memory...
fixed(byte* ptr = _array)
Initialize(ptr, len, len, FileAccess.Read, true);
}
~PinnedBufferMemoryStream()
{
Dispose(false);
}
[System.Security.SecuritySafeCritical] // auto-generated
protected override void Dispose(bool disposing)
{
if (_isOpen) {
_pinningHandle.Free();
_isOpen = false;
}
#if _DEBUG
// To help track down lifetime issues on checked builds, force
//a full GC here.
if (disposing) {
GC.Collect();
GC.WaitForPendingFinalizers();
}
#endif
base.Dispose(disposing);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: PinnedBufferMemoryStream
**
** [....]
**
**
** Purpose: Pins a byte[], exposing it as an unmanaged memory
** stream. Used in ResourceReader for corner cases.
**
**
===========================================================*/
using System;
using System.Runtime.InteropServices;
using System.Diagnostics.Contracts;
namespace System.IO {
internal sealed unsafe class PinnedBufferMemoryStream : UnmanagedMemoryStream
{
private byte[] _array;
private GCHandle _pinningHandle;
// The new inheritance model requires a Critical default ctor since base (UnmanagedMemoryStream) has one
[System.Security.SecurityCritical]
private PinnedBufferMemoryStream():base(){}
[System.Security.SecurityCritical] // auto-generated
internal PinnedBufferMemoryStream(byte[] array)
{
Contract.Assert(array != null, "Array can't be null");
int len = array.Length;
// Handle 0 length byte arrays specially.
if (len == 0) {
array = new byte[1];
len = 0;
}
_array = array;
_pinningHandle = new GCHandle(array, GCHandleType.Pinned);
// Now the byte[] is pinned for the lifetime of this instance.
// But I also need to get a pointer to that block of memory...
fixed(byte* ptr = _array)
Initialize(ptr, len, len, FileAccess.Read, true);
}
~PinnedBufferMemoryStream()
{
Dispose(false);
}
[System.Security.SecuritySafeCritical] // auto-generated
protected override void Dispose(bool disposing)
{
if (_isOpen) {
_pinningHandle.Free();
_isOpen = false;
}
#if _DEBUG
// To help track down lifetime issues on checked builds, force
//a full GC here.
if (disposing) {
GC.Collect();
GC.WaitForPendingFinalizers();
}
#endif
base.Dispose(disposing);
}
}
}
// 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
- SplitterEvent.cs
- DocumentPageHost.cs
- Double.cs
- TextEditorCopyPaste.cs
- Authorization.cs
- _ScatterGatherBuffers.cs
- DependencyPropertyValueSerializer.cs
- XNodeNavigator.cs
- Blend.cs
- OleAutBinder.cs
- CharAnimationBase.cs
- MsmqException.cs
- ObjectNotFoundException.cs
- EntityDataSourceWrapperCollection.cs
- HttpModuleActionCollection.cs
- SafeFileMappingHandle.cs
- InstanceDescriptor.cs
- DetailsViewRow.cs
- OperationBehaviorAttribute.cs
- EnvelopedPkcs7.cs
- StringOutput.cs
- ComEventsMethod.cs
- GridViewDeletedEventArgs.cs
- SettingsProviderCollection.cs
- PreservationFileReader.cs
- XmlSerializationWriter.cs
- DiscreteKeyFrames.cs
- MetadataSource.cs
- ObjectContext.cs
- ServiceReference.cs
- InternalTypeHelper.cs
- SafeFindHandle.cs
- MethodCallConverter.cs
- RegexGroupCollection.cs
- CompoundFileIOPermission.cs
- TypeSystemHelpers.cs
- EditorPartChrome.cs
- Compiler.cs
- FieldToken.cs
- Object.cs
- SystemFonts.cs
- UnitControl.cs
- Interlocked.cs
- MessageSecurityOverMsmqElement.cs
- StartUpEventArgs.cs
- ReadOnlyDictionary.cs
- FamilyMapCollection.cs
- ReadOnlyHierarchicalDataSource.cs
- TileBrush.cs
- RuntimeHandles.cs
- ToolStripTextBox.cs
- _IPv6Address.cs
- Parser.cs
- TemplateControlParser.cs
- InOutArgumentConverter.cs
- TextTreeRootTextBlock.cs
- ItemsPresenter.cs
- OracleConnectionString.cs
- TablePattern.cs
- WmlControlAdapter.cs
- Path.cs
- ErrorHandlerFaultInfo.cs
- XmlNodeChangedEventManager.cs
- Accessible.cs
- DocumentGridPage.cs
- DynamicValueConverter.cs
- TextRangeAdaptor.cs
- cookiecontainer.cs
- ListView.cs
- RectangleF.cs
- MasterPageCodeDomTreeGenerator.cs
- WebPartDisplayModeCancelEventArgs.cs
- ZoneMembershipCondition.cs
- ControlCommandSet.cs
- AudioFileOut.cs
- DrawingGroup.cs
- DetailsViewUpdatedEventArgs.cs
- Hash.cs
- BinaryFormatterWriter.cs
- HtmlImage.cs
- ImageSource.cs
- FilteredAttributeCollection.cs
- TypeDescriptorFilterService.cs
- LinkDescriptor.cs
- SQLInt32.cs
- COM2IProvidePropertyBuilderHandler.cs
- ViewBox.cs
- StreamGeometryContext.cs
- EdmMember.cs
- BaseCollection.cs
- FixedSOMImage.cs
- TransformGroup.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- PlainXmlSerializer.cs
- ITextView.cs
- InvokeWebService.cs
- DataGridViewColumnCollectionEditor.cs
- ModuleBuilder.cs
- ManipulationStartingEventArgs.cs
- IdentityManager.cs