IDnsServiceListRecordDetailsAsync Method |
This API is preliminary and subject to change.
Gets detailed information about a specific DNS record.
Namespace: net.openstack.Providers.RackspaceAssembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax Task<DnsRecord> ListRecordDetailsAsync(
DomainId domainId,
RecordId recordId,
CancellationToken cancellationToken
)
Function ListRecordDetailsAsync (
domainId As DomainId,
recordId As RecordId,
cancellationToken As CancellationToken
) As Task(Of DnsRecord)
Task<DnsRecord^>^ ListRecordDetailsAsync(
DomainId^ domainId,
RecordId^ recordId,
CancellationToken cancellationToken
)
abstract ListRecordDetailsAsync :
domainId : DomainId *
recordId : RecordId *
cancellationToken : CancellationToken -> Task<DnsRecord>
Parameters
- domainId
- Type: net.openstack.Providers.Rackspace.Objects.DnsDomainId
The domain ID. This is obtained from DnsDomain.Id. - recordId
- Type: net.openstack.Providers.Rackspace.Objects.DnsRecordId
The record ID. This is obtained from DnsRecord.Id. - cancellationToken
- Type: System.ThreadingCancellationToken
The CancellationToken that the task will observe.
Return Value
Type:
TaskDnsRecordA
Task object representing the asynchronous operation. When the task completes successfully, the
Result property will return a
DnsRecord object containing the details of the specified DNS record.
Exceptions Version Information .NET Framework
Supported in: 4.5
openstack.net
Supported in: 1.6, 1.5, 1.4, 1.3.6
See Also