System.Net.Sockets.SelectMode Enum

public enum SelectMode

Base Types

Object
  ValueType
    Enum
      SelectMode

Assembly

System

Library

Networking

Summary

Specifies the mode used by the System.Net.Sockets.Socket.Poll(System.Int32,System.Net.Sockets.SelectMode) method of the Socket class.

Description

A SelectMode member specifies the status information (read, write, or error) to retrieve from the current Socket instance.

See Also

System.Net.Sockets Namespace

Members

SelectMode Fields

SelectMode.SelectError Field
SelectMode.SelectRead Field
SelectMode.SelectWrite Field
SelectMode.value__ Field


SelectMode.SelectError Field

SelectError = 2;

Summary

Determine the error status of the current Socket instance.

See Also

System.Net.Sockets.SelectMode Enum, System.Net.Sockets Namespace

SelectMode.SelectRead Field

SelectRead = 0;

Summary

Determine the read status of the current Socket instance.

See Also

System.Net.Sockets.SelectMode Enum, System.Net.Sockets Namespace

SelectMode.SelectWrite Field

SelectWrite = 1;

Summary

Determine the write status of the current Socket instance.

See Also

System.Net.Sockets.SelectMode Enum, System.Net.Sockets Namespace

SelectMode.value__ Field

value__;

See Also

System.Net.Sockets.SelectMode Enum, System.Net.Sockets Namespace