DNSReplyMBS properties

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

Back to DNSReplyMBS class.

DNSReplyMBS.additionalCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property DNS MBS MacOSX Plugin 9.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of additional records.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

if r<>Nil then
MsgBox "additionalCount: "+str(r.additionalCount)
end if

(Read and Write property)

DNSReplyMBS.answerCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property DNS MBS MacOSX Plugin 9.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of answer records.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

if r<>Nil then
MsgBox "answerCount: "+str(r.answerCount)
end if

(Read and Write property)

DNSReplyMBS.authorityCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property DNS MBS MacOSX Plugin 9.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of authority records.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

if r<>Nil then
MsgBox "authorityCount: "+str(r.authorityCount)
end if

(Read and Write property)

DNSReplyMBS.Header as DNSHeaderMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
property DNS MBS MacOSX Plugin 9.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The header values for this query.

(Read and Write property)

DNSReplyMBS.questionCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property DNS MBS MacOSX Plugin 9.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The number of questions.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

if r<>Nil then
MsgBox "questionCount: "+str(r.questionCount)
end if

(Read and Write property)

DNSReplyMBS.Server as DNSSocketAddressMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
property DNS MBS MacOSX Plugin 9.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The server details from this query.

(Read and Write property)

DNSReplyMBS.Status as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property DNS MBS MacOSX Plugin 9.7 ✅ Yes ❌ No ❌ No ✅ Yes All
The status of this query.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

if r<>Nil then
MsgBox "Status: "+str(r.Status)
end if

See the Status* constants.
(Read and Write property)

The items on this page are in the following plugins: MBS MacOSX Plugin.


💬 Ask a question or report a problem