Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Sockets / _TransmitFileOverlappedAsyncResult.cs / 1 / _TransmitFileOverlappedAsyncResult.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Sockets { using System; using System.Net; using System.IO; using System.Runtime.InteropServices; using System.Threading; using Microsoft.Win32; // // OverlappedAsyncResult - used to take care of storage for async Socket operation // from the BeginSend, BeginSendTo, BeginReceive, BeginReceiveFrom calls. // internal class TransmitFileOverlappedAsyncResult : BaseOverlappedAsyncResult { // // internal class members // private FileStream m_fileStream; private TransmitFileOptions m_flags; private TransmitFileBuffers m_buffers; // Constructor. We take in the socket that's creating us, the caller's // state object, and the buffer on which the I/O will be performed. // We save the socket and state, pin the callers's buffer, and allocate // an event for the WaitHandle. // internal TransmitFileOverlappedAsyncResult(Socket socket, Object asyncState, AsyncCallback asyncCallback) : base(socket, asyncState, asyncCallback) { } internal TransmitFileOverlappedAsyncResult(Socket socket):base(socket){ } // // SetUnmanagedStructures - // Fills in Overlapped Structures used in an Async Overlapped Winsock call // these calls are outside the runtime and are unmanaged code, so we need // to prepare specific structures and ints that lie in unmanaged memory // since the Overlapped calls can be Async // internal void SetUnmanagedStructures(byte[] preBuffer, byte[] postBuffer, FileStream fileStream, TransmitFileOptions flags, bool sync) { // // fill in flags if we use it. // m_fileStream = fileStream; m_flags = flags; // // Fill in Buffer Array structure that will be used for our send/recv Buffer // m_buffers = null; int buffsNumber = 0; if (preBuffer != null && preBuffer.Length>0) ++buffsNumber; if (postBuffer != null && postBuffer.Length>0) ++buffsNumber; object[] objectsToPin = null; if (buffsNumber != 0) { ++buffsNumber; objectsToPin = new object[buffsNumber]; m_buffers = new TransmitFileBuffers(); objectsToPin[--buffsNumber] = m_buffers; if (preBuffer != null && preBuffer.Length>0) { m_buffers.preBufferLength = preBuffer.Length; objectsToPin[--buffsNumber] = preBuffer; } if (postBuffer != null && postBuffer.Length>0) { m_buffers.postBufferLength = postBuffer.Length; objectsToPin[--buffsNumber] = postBuffer; } if (sync) { base.PinUnmanagedObjects(objectsToPin); } else { base.SetUnmanagedStructures(objectsToPin); } if (preBuffer != null && preBuffer.Length > 0) { m_buffers.preBuffer = Marshal.UnsafeAddrOfPinnedArrayElement(preBuffer, 0); } if (postBuffer != null && postBuffer.Length > 0) { m_buffers.postBuffer = Marshal.UnsafeAddrOfPinnedArrayElement(postBuffer, 0); } } else if (!sync) { base.SetUnmanagedStructures(null); } } // SetUnmanagedStructures() internal void SetUnmanagedStructures(byte[] preBuffer, byte[] postBuffer, FileStream fileStream, TransmitFileOptions flags, ref OverlappedCache overlappedCache) { SetupCache(ref overlappedCache); SetUnmanagedStructures(preBuffer, postBuffer, fileStream, flags, false); } // Utility cleanup routine. Frees pinned and unmanged memory. // protected override void ForceReleaseUnmanagedStructures() { if (m_fileStream != null ) { m_fileStream.Close(); m_fileStream = null; } // // clenaup base class // base.ForceReleaseUnmanagedStructures(); } // CleanupUnmanagedStructures() internal void SyncReleaseUnmanagedStructures() { ForceReleaseUnmanagedStructures(); } internal TransmitFileBuffers TransmitFileBuffers{ get{ return m_buffers; } } internal TransmitFileOptions Flags{ get{ return m_flags; } } }; // class OverlappedAsyncResult } // namespace System.Net.Sockets
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DocumentPageView.cs
- TargetInvocationException.cs
- LazyLoadBehavior.cs
- RadioButton.cs
- ParentUndoUnit.cs
- AliasedSlot.cs
- TokenBasedSet.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ConnectionStringSettingsCollection.cs
- XsdValidatingReader.cs
- WindowsToolbarAsMenu.cs
- TableAdapterManagerNameHandler.cs
- DesignSurfaceServiceContainer.cs
- Registry.cs
- XmlCountingReader.cs
- ColumnBinding.cs
- Token.cs
- ResXBuildProvider.cs
- TrustSection.cs
- mactripleDES.cs
- HttpModulesSection.cs
- Panel.cs
- OutputScopeManager.cs
- HttpHandlersSection.cs
- ProcessHostMapPath.cs
- UInt16Converter.cs
- Size3DValueSerializer.cs
- ConnectionStringsSection.cs
- SchemaNamespaceManager.cs
- TaskFormBase.cs
- XmlSchemaRedefine.cs
- BitArray.cs
- SplashScreen.cs
- RenameRuleObjectDialog.Designer.cs
- TTSVoice.cs
- DrawingBrush.cs
- ZipPackagePart.cs
- FixedNode.cs
- XmlIlGenerator.cs
- XmlWhitespace.cs
- ThreadStartException.cs
- ProcessThread.cs
- NamespaceEmitter.cs
- ValueExpressions.cs
- HttpListenerException.cs
- GetCryptoTransformRequest.cs
- EmptyReadOnlyDictionaryInternal.cs
- ProfileSettingsCollection.cs
- AttributeCollection.cs
- PerspectiveCamera.cs
- FrameworkElementAutomationPeer.cs
- ToolStripItem.cs
- CssStyleCollection.cs
- DataGridHelper.cs
- BitmapEffectDrawingContextState.cs
- CultureMapper.cs
- ExpressionParser.cs
- Select.cs
- PcmConverter.cs
- DataPagerFieldCollection.cs
- WriterOutput.cs
- MinimizableAttributeTypeConverter.cs
- MonitorWrapper.cs
- GridViewRowPresenter.cs
- AssemblyInfo.cs
- GreenMethods.cs
- xdrvalidator.cs
- ParagraphResult.cs
- SafeNativeMethods.cs
- Triangle.cs
- infer.cs
- DataChangedEventManager.cs
- LinkedResource.cs
- XmlAggregates.cs
- DLinqColumnProvider.cs
- GestureRecognizer.cs
- AdornerLayer.cs
- User.cs
- DesignTimeXamlWriter.cs
- XmlSchemaSimpleContent.cs
- CatalogPartChrome.cs
- UrlPropertyAttribute.cs
- RadioButton.cs
- ThreadAttributes.cs
- FreezableDefaultValueFactory.cs
- FontFamilyConverter.cs
- GB18030Encoding.cs
- Certificate.cs
- RegionInfo.cs
- BinHexEncoder.cs
- RectangleConverter.cs
- EventTrigger.cs
- _NetRes.cs
- GradientBrush.cs
- MenuAdapter.cs
- PriorityQueue.cs
- Nodes.cs
- UniqueEventHelper.cs
- DoubleMinMaxAggregationOperator.cs
- TypedServiceChannelBuilder.cs