SocketTools .NET Edition

IcmpClient.IcmpOptions Enumeration

Specifies the options that the IcmpClient class supports.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

[Visual Basic]
<Flags>
Public Enum IcmpClient.IcmpOptions
[C#]
[Flags]
public enum IcmpClient.IcmpOptions

Remarks

The IcmpClient class uses the IcmpOptions enumeration to specify one or more options to be used when establishing a connection with a remote host. Multiple options may be specified if necessary.

There are currently no additional options for IcmpClient class. This enumeration is provided for future expansion.

Members

Member Name Description Value
optionNone No option specified. 0
optionDefault The default connection option. This is the same as specifying optionNone. 0
optionFreeThread This option specifies that class methods may be called from any thread, and not only the thread that established the connection. Using this option disables certain internal safety checks that are made by the class and may result in unexpected behavior unless you ensure that access to the class instance is synchronized across multiple threads. 32768

Requirements

Namespace: SocketTools

Assembly: SocketTools.IcmpClient (in SocketTools.IcmpClient.dll)

See Also

SocketTools Namespace