System::Net::EndPoint class

EndPoint class

The abstract class contains a network address. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class EndPoint : public System::Object

Methods

MethodDescription
virtual Create(System::SharedPtr<SocketAddress>)Create a new instance of the EndPoint class using the specified socket address.
virtual get_AddressFamily()RTTI information.
virtual GetImpl() constReturns a pointer to implementation.

Typedefs

TypedefDescription
ImplPtrA pointer to implementation.

See Also