Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Socket::UseOnlyOverlappedIO Property

 

Specifies whether the socket should only use Overlapped I/O mode.

Namespace:   System.Net.Sockets
Assembly:  System (in System.dll)

public:
property bool UseOnlyOverlappedIO {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the Socket uses only overlapped I/O; otherwise, false. The default is false.

Exception Condition
InvalidOperationException

The socket has been bound to a completion port.

Set this property to true for a Socket you intend to call DuplicateAndClose. Otherwise, the Framework may assign a completion port to the socket, which would prohibit the use of DuplicateAndClose.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft