System.Net.Sockets.SocketShutdown Enum

public enum SocketShutdown

Base Types

Object
  ValueType
    Enum
      SocketShutdown

Assembly

System

Library

Networking

Summary

Specifies whether the ability to send or receive data is terminated when the System.Net.Sockets.Socket.Shutdown(System.Net.Sockets.SocketShutdown) method is called on a connected Socket instance.

See Also

System.Net.Sockets Namespace

Members

SocketShutdown Fields

SocketShutdown.Both Field
SocketShutdown.Receive Field
SocketShutdown.Send Field
SocketShutdown.value__ Field


SocketShutdown.Both Field

Both = 2;

Summary

Specifies to terminate the ability to send and receive data on a Socket instance.

See Also

System.Net.Sockets.SocketShutdown Enum, System.Net.Sockets Namespace

SocketShutdown.Receive Field

Receive = 0;

Summary

Specifies to terminate the ability to receive data on a Socket instance.

See Also

System.Net.Sockets.SocketShutdown Enum, System.Net.Sockets Namespace

SocketShutdown.Send Field

Send = 1;

Summary

Specifies to terminate the ability to send data from a Socket instance.

See Also

System.Net.Sockets.SocketShutdown Enum, System.Net.Sockets Namespace

SocketShutdown.value__ Field

value__;

See Also

System.Net.Sockets.SocketShutdown Enum, System.Net.Sockets Namespace