ConnectByNameError Property

SocketAsyncEventArgs.ConnectByNameError Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the exception in the case of a connection failure when a DnsEndPoint was used.

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

public Exception ConnectByNameError { get; }

Property Value

Type: System.Exception
A Exception that indicates the cause of the connection error when a DnsEndPoint was specified for the RemoteEndPoint property.

In the case of a connection failure when a DnsEndPoint was specified for the RemoteEndPoint property, the ConnectByNameError property will contain the exception that indicates the detailed cause of the socket error.

When an IPEndPoint was specified for the RemoteEndPoint property and a connection failure occurs, the ConnectByNameError property will be null.

The SocketError property is always set in the case of a connection failure. The ConnectByNameError property contains more information about the failure if it was a failure connecting to a DnsEndPoint. If an application is only interested in whether the connect operation succeeded or failed, then the application only needs to check the SocketError property.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft