System::Net::Dns::BeginGetHostEntry method
Contents
[
Hide
]Dns::BeginGetHostEntry(String, AsyncCallback, System::SharedPtr<Object>) method
Initiates an asynchronous operation to create a new IPHostEntry-class instance using the specified string that contains a host name or IP address.
static System::SharedPtr<IAsyncResult> System::Net::Dns::BeginGetHostEntry(String hostNameOrAddress, AsyncCallback requestCallback, System::SharedPtr<Object> stateObject)
Parameter | Type | Description |
---|---|---|
hostNameOrAddress | String | The string that contains a hostname or IP address. |
requestCallback | AsyncCallback | A callback to be called when the operation completes. |
stateObject | System::SharedPtr<Object> | User-provided data used to uniquely identify each asynchronous operation. |
ReturnValue
An IAsyncResult object representing the initiated asynchronous operation.
See Also
- Typedef SharedPtr
- Class IAsyncResult
- Class String
- Typedef AsyncCallback
- Class Object
- Class Dns
- Namespace System::Net
- Library Aspose.PUB for C++
Dns::BeginGetHostEntry(System::SharedPtr<IPAddress>, AsyncCallback, System::SharedPtr<Object>) method
Initiates an asynchronous operation to create a new IPHostEntry-class instance using the specified IP address.
static System::SharedPtr<IAsyncResult> System::Net::Dns::BeginGetHostEntry(System::SharedPtr<IPAddress> address, AsyncCallback requestCallback, System::SharedPtr<Object> stateObject)
Parameter | Type | Description |
---|---|---|
address | System::SharedPtr<IPAddress> | The IP address. |
requestCallback | AsyncCallback | A callback to be called when the operation completes. |
stateObject | System::SharedPtr<Object> | User-provided data used to uniquely identify each asynchronous operation. |
ReturnValue
An IAsyncResult object representing the initiated asynchronous operation.
See Also
- Typedef SharedPtr
- Class IAsyncResult
- Class IPAddress
- Typedef AsyncCallback
- Class Object
- Class Dns
- Namespace System::Net
- Library Aspose.PUB for C++