Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Sets the specified Socket option to the specified Boolean value.
Namespace: System.Net.Sockets
Assembly: System (in System.dll)
Syntax
'Declaration
Public Sub SetSocketOption ( _
optionLevel As SocketOptionLevel, _
optionName As SocketOptionName, _
optionValue As Boolean _
)
public void SetSocketOption(
SocketOptionLevel optionLevel,
SocketOptionName optionName,
bool optionValue
)
public:
void SetSocketOption(
SocketOptionLevel optionLevel,
SocketOptionName optionName,
bool optionValue
)
member SetSocketOption :
optionLevel:SocketOptionLevel *
optionName:SocketOptionName *
optionValue:bool -> unit
public function SetSocketOption(
optionLevel : SocketOptionLevel,
optionName : SocketOptionName,
optionValue : boolean
)
Parameters
- optionLevel
Type: System.Net.Sockets. . :: . .SocketOptionLevel
One of the SocketOptionLevel values.
- optionName
Type: System.Net.Sockets. . :: . .SocketOptionName
One of the SocketOptionName values.
- optionValue
Type: System. . :: . .Boolean
The value of the option, represented as a Boolean.
Remarks
Socket options determine the behavior of the current Socket. Set optionValue to true to enable the option, or to false to disable the option.
Socket options are grouped by level of protocol support.
Listed below are the various Socket options that can be set using this overload. These options are grouped by the appropriate SocketOptionLevel value. If you intend to set any of these options, be sure to use the appropriate SocketOptionLevel value for the optionLevel parameter. The option you choose to set must be specified in the optionName parameter. If you want to get the current value of any of the options listed, use the GetSocketOption method.
SocketOptionLevel..::..Socket options that can be set using this overload.
SocketOptionLevel..::..IP options that can be set using this overload.
SocketOptionLevel..::..Tcp options that can be set using this overload.
SocketOptionLevel..::..Udp options that can be set using this overload.
For more information on these options, refer to the SocketOptionName enumeration.
Note
If you receive a SocketException exception, use the SocketException..::..ErrorCode property to obtain the specific error code. After you have obtained this code, refer to the Windows Sockets version 2 API error code documentation in the MSDN library for a detailed description of the error.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.