DNSimple.DNSimpleRestClient.GetRecord C# (CSharp) Method

GetRecord() public method

Retrieve the details for a specific Domain DNS Record Instance. Makes a GET request to an DNS Record Instance resource.
public GetRecord ( int domainId, int record_id ) : dynamic
domainId int The ID of the domain for which to retrieve the DNS record
record_id int The ID of the DNS record to retrieve
return dynamic
        public dynamic GetRecord(int domainId, int record_id)
        {
            Require.Argument("domainId", domainId);
            Require.Argument("record_id", record_id);

            return GetRecord(domainId.ToString(), record_id);
        }

Same methods

DNSimpleRestClient::GetRecord ( string domain, int record_id ) : dynamic