DNSHeaderMBS 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 DNSHeaderMBS class.

DNSHeaderMBS.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 items.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

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

(Read and Write property)

DNSHeaderMBS.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 answers in this query.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

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

(Read and Write property)

DNSHeaderMBS.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.Header.AuthorityCount)
end if

(Read and Write property)

DNSHeaderMBS.Flags as Integer

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

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

(Read and Write property)

DNSHeaderMBS.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 in this query.
Example
dim r as DNSReplyMBS = DNSUtilMBS.Lookup("www.apple.com", DNSUtilMBS.ClassINTERNET, DNSUtilMBS.TypeA)

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

(Read and Write property)

DNSHeaderMBS.xid as Integer

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

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

(Read and Write property)

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


💬 Ask a question or report a problem