Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Net / System / Net / Sockets / _ConnectOverlappedAsyncResult.cs / 1 / _ConnectOverlappedAsyncResult.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Sockets { using System; using System.Net; using System.Runtime.InteropServices; using System.Threading; using Microsoft.Win32; // // ConnectOverlappedAsyncResult - used to take care of storage for async Socket BeginAccept call. // internal class ConnectOverlappedAsyncResult : BaseOverlappedAsyncResult { private EndPoint m_EndPoint; internal ConnectOverlappedAsyncResult(Socket socket, EndPoint endPoint, Object asyncState, AsyncCallback asyncCallback): base(socket,asyncState,asyncCallback) { m_EndPoint = endPoint; } // // This method is called by base.CompletionPortCallback base.OverlappedCallback as part of IO completion // internal override object PostCompletion(int numBytes) { SocketError errorCode = (SocketError)ErrorCode; Socket socket = (Socket)AsyncObject; if (errorCode==SocketError.Success) { //set the socket context try { errorCode = UnsafeNclNativeMethods.OSSOCK.setsockopt( socket.SafeHandle, SocketOptionLevel.Socket, SocketOptionName.UpdateConnectContext, null, 0); if (errorCode == SocketError.SocketError) errorCode = (SocketError) Marshal.GetLastWin32Error(); } catch (ObjectDisposedException) { errorCode = SocketError.OperationAborted; } ErrorCode = (int) errorCode; } if (errorCode==SocketError.Success) { socket.SetToConnected(); return socket; } return null; } internal EndPoint RemoteEndPoint { get { return m_EndPoint; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Sockets { using System; using System.Net; using System.Runtime.InteropServices; using System.Threading; using Microsoft.Win32; // // ConnectOverlappedAsyncResult - used to take care of storage for async Socket BeginAccept call. // internal class ConnectOverlappedAsyncResult : BaseOverlappedAsyncResult { private EndPoint m_EndPoint; internal ConnectOverlappedAsyncResult(Socket socket, EndPoint endPoint, Object asyncState, AsyncCallback asyncCallback): base(socket,asyncState,asyncCallback) { m_EndPoint = endPoint; } // // This method is called by base.CompletionPortCallback base.OverlappedCallback as part of IO completion // internal override object PostCompletion(int numBytes) { SocketError errorCode = (SocketError)ErrorCode; Socket socket = (Socket)AsyncObject; if (errorCode==SocketError.Success) { //set the socket context try { errorCode = UnsafeNclNativeMethods.OSSOCK.setsockopt( socket.SafeHandle, SocketOptionLevel.Socket, SocketOptionName.UpdateConnectContext, null, 0); if (errorCode == SocketError.SocketError) errorCode = (SocketError) Marshal.GetLastWin32Error(); } catch (ObjectDisposedException) { errorCode = SocketError.OperationAborted; } ErrorCode = (int) errorCode; } if (errorCode==SocketError.Success) { socket.SetToConnected(); return socket; } return null; } internal EndPoint RemoteEndPoint { get { return m_EndPoint; } } } } // 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
- PublisherMembershipCondition.cs
- _SslState.cs
- Panel.cs
- XomlDesignerLoader.cs
- Attributes.cs
- TemplatePagerField.cs
- TriState.cs
- PermissionAttributes.cs
- SystemIPGlobalProperties.cs
- SecureUICommand.cs
- IndicShape.cs
- VolatileEnlistmentState.cs
- Underline.cs
- XamlInt32CollectionSerializer.cs
- MenuAutomationPeer.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- HiddenField.cs
- ResourcesChangeInfo.cs
- BindStream.cs
- Enum.cs
- XmlArrayAttribute.cs
- TextFormatterHost.cs
- NavigateEvent.cs
- SupportsEventValidationAttribute.cs
- BindingList.cs
- XmlCustomFormatter.cs
- TemplateApplicationHelper.cs
- SqlCacheDependency.cs
- Command.cs
- DataGridHeaderBorder.cs
- MouseButtonEventArgs.cs
- TrackingProfile.cs
- WorkflowOperationBehavior.cs
- ResourcesBuildProvider.cs
- SafeRightsManagementPubHandle.cs
- odbcmetadatafactory.cs
- DbProviderServices.cs
- DataGridRowEventArgs.cs
- ExpressionConverter.cs
- FunctionDetailsReader.cs
- WmlTextViewAdapter.cs
- __ConsoleStream.cs
- ValueExpressions.cs
- TemplatedEditableDesignerRegion.cs
- SqlTriggerContext.cs
- TextServicesManager.cs
- selecteditemcollection.cs
- DetailsViewModeEventArgs.cs
- Binding.cs
- PrintingPermissionAttribute.cs
- ConfigUtil.cs
- PagePropertiesChangingEventArgs.cs
- AbstractExpressions.cs
- AffineTransform3D.cs
- InkCanvasSelection.cs
- EnvelopedPkcs7.cs
- DataSourceCache.cs
- TreeViewItemAutomationPeer.cs
- ArrangedElement.cs
- MatrixTransform.cs
- DbParameterCollection.cs
- columnmapkeybuilder.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- JsonDataContract.cs
- ControlIdConverter.cs
- BuildManager.cs
- TextTrailingWordEllipsis.cs
- ProgressBarAutomationPeer.cs
- TraceSection.cs
- PasswordTextContainer.cs
- ThumbAutomationPeer.cs
- SafeEventLogWriteHandle.cs
- BoundingRectTracker.cs
- MDIClient.cs
- TableStyle.cs
- Timer.cs
- XsdBuildProvider.cs
- CollectionBase.cs
- UnauthorizedWebPart.cs
- StylusButtonEventArgs.cs
- ValueTable.cs
- WasAdminWrapper.cs
- DataGridColumnCollection.cs
- TrackingCondition.cs
- List.cs
- SeverityFilter.cs
- FormatterServices.cs
- ProgressBar.cs
- lengthconverter.cs
- WebPartConnectionsCancelEventArgs.cs
- FilteredReadOnlyMetadataCollection.cs
- CrossSiteScriptingValidation.cs
- Point.cs
- RelatedPropertyManager.cs
- ToolStripMenuItem.cs
- DomNameTable.cs
- InstanceData.cs
- SqlTransaction.cs
- DiagnosticsConfigurationHandler.cs
- smtpconnection.cs