| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property RemoteEndPoint As IPEndPoint | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As CertificateReceivedEventArgs Dim value As IPEndPoint value = instance.RemoteEndPoint | |
| C# | |
|---|---|
public IPEndPoint RemoteEndPoint {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property IPEndPoint* get_RemoteEndPoint(); | |
| C++/CLI | |
|---|---|
public: property IPEndPoint^ RemoteEndPoint { IPEndPoint^ get(); } | |
Property Value
An IPEndPoint indicating the IP address and port of the remote host.Use RemoteEndPoint along with the remote Certificate for decisions on connection acceptance.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code