Socket.DuplicateAndClose Method
Assembly: System (in system.dll)
public SocketInformation DuplicateAndClose ( int targetProcessId )
public function DuplicateAndClose ( targetProcessId : int ) : SocketInformation
Parameters
- targetProcessId
The ID of the target process where a duplicate of the socket reference is created.
Return Value
The socket reference to be passed to the target process.The target process should use Socket to create the duplicate socket instance.
If you call the Socket constructor multiple times with the same byte array as the argument for each call, you will create multiple managed Sockets with the same underlying socket. This practice is strongly discouraged.
If the process creating the socket uses asynchronous methods (BeginReceive or BeginSend), the process must first set the UseOnlyOverlappedIO property to true; otherwise, the socket is bound to the completion port of the creating process, which may cause an ArgumentNullException to be thrown on the target process.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.