DnsClient.xml 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DnsClient</name>
  5. </assembly>
  6. <members>
  7. <member name="M:DnsClient.DnsDatagramReader.ParseString(System.ArraySegment{System.Byte})">
  8. <summary>
  9. As defined in https://tools.ietf.org/html/rfc1035#section-5.1 except '()' or '@' or '.'
  10. </summary>
  11. </member>
  12. <member name="M:DnsClient.DnsDatagramReader.ReadIPAddress">
  13. <summary>
  14. Reads an IP address from the next 4 bytes.
  15. </summary>
  16. <returns>The <see cref="T:System.Net.IPAddress"/>.</returns>
  17. <exception cref="T:System.IndexOutOfRangeException">If there are no 4 bytes to read.</exception>
  18. </member>
  19. <member name="T:DnsClient.Protocol.DnsHeaderFlag">
  20. <summary>
  21. The flags of the header's second 16bit value
  22. </summary>
  23. </member>
  24. <member name="T:DnsClient.Protocol.AaaaRecord">
  25. <summary>
  26. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending an IPv6 <see cref="T:System.Net.IPAddress"/>.
  27. <para>
  28. A 128 bit IPv6 address is encoded in the data portion of an AAAA
  29. resource record in network byte order(high-order byte first).
  30. </para>
  31. </summary>
  32. <seealso href="https://tools.ietf.org/html/rfc3596#section-2.2">RFC 3596</seealso>
  33. </member>
  34. <member name="M:DnsClient.Protocol.AaaaRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress)">
  35. <summary>
  36. Initializes a new instance of the <see cref="T:DnsClient.Protocol.AaaaRecord"/> class.
  37. </summary>
  38. <inheritdoc />
  39. </member>
  40. <member name="T:DnsClient.Protocol.AddressRecord">
  41. <summary>
  42. Base class for <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>s transporting an <see cref="T:System.Net.IPAddress"/>.
  43. </summary>
  44. <seealso cref="T:DnsClient.Protocol.ARecord"/>
  45. <seealso cref="T:DnsClient.Protocol.AaaaRecord"/>
  46. </member>
  47. <member name="P:DnsClient.Protocol.AddressRecord.Address">
  48. <summary>
  49. Gets the <see cref="T:System.Net.IPAddress"/>.
  50. </summary>
  51. <value>
  52. The address.
  53. </value>
  54. </member>
  55. <member name="M:DnsClient.Protocol.AddressRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress)">
  56. <summary>
  57. Initializes a new instance of the <see cref="T:DnsClient.Protocol.AddressRecord"/> class.
  58. </summary>
  59. <param name="info">The information.</param>
  60. <param name="address">The address.</param>
  61. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
  62. <exception cref="T:System.ArgumentNullException">If <paramref name="address"/> or <paramref name="info"/> is null</exception>
  63. </member>
  64. <member name="M:DnsClient.Protocol.AddressRecord.RecordToString">
  65. <inheritdoc />
  66. </member>
  67. <member name="T:DnsClient.Protocol.AfsDbRecord">
  68. <summary>
  69. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> representing an AFS database location.
  70. </summary>
  71. <seealso href="https://tools.ietf.org/html/rfc1183#section-1">RFC 1183</seealso>
  72. <seealso href="https://tools.ietf.org/html/rfc5864">RFC 5864</seealso>
  73. </member>
  74. <member name="P:DnsClient.Protocol.AfsDbRecord.SubType">
  75. <summary>
  76. Gets the <see cref="T:DnsClient.Protocol.AfsType"/>.
  77. </summary>
  78. <value>
  79. The sub type.
  80. </value>
  81. </member>
  82. <member name="P:DnsClient.Protocol.AfsDbRecord.Hostname">
  83. <summary>
  84. Gets the hostname.
  85. </summary>
  86. <value>
  87. The hostname.
  88. </value>
  89. </member>
  90. <member name="M:DnsClient.Protocol.AfsDbRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.Protocol.AfsType,DnsClient.DnsString)">
  91. <summary>
  92. Initializes a new instance of the <see cref="T:DnsClient.Protocol.AfsDbRecord"/> class.
  93. </summary>
  94. <param name="info">The information.</param>
  95. <param name="type">The type.</param>
  96. <param name="name">The name.</param>
  97. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="name"/> is null.</exception>
  98. </member>
  99. <member name="M:DnsClient.Protocol.AfsDbRecord.RecordToString">
  100. <inheritdoc />
  101. </member>
  102. <member name="T:DnsClient.Protocol.AfsType">
  103. <summary>
  104. Type used by <see cref="T:DnsClient.Protocol.AfsDbRecord"/>.
  105. </summary>
  106. </member>
  107. <member name="F:DnsClient.Protocol.AfsType.Afs">
  108. <summary>
  109. AFS is a registered trademark of Transarc Corporation
  110. </summary>
  111. </member>
  112. <member name="F:DnsClient.Protocol.AfsType.Dce">
  113. <summary>
  114. The Distributed Computing Environment
  115. </summary>
  116. </member>
  117. <member name="T:DnsClient.Protocol.ARecord">
  118. <summary>
  119. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending an IPv4 <see cref="T:System.Net.IPAddress"/>.
  120. Hosts that have multiple Internet addresses will have multiple A records.
  121. </summary>
  122. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  123. </member>
  124. <member name="M:DnsClient.Protocol.ARecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress)">
  125. <summary>
  126. Initializes a new instance of the <see cref="T:DnsClient.Protocol.ARecord"/> class.
  127. </summary>
  128. <inheritdoc />
  129. </member>
  130. <member name="T:DnsClient.Protocol.CaaRecord">
  131. <summary>
  132. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> representing a certification authority authorization.
  133. <para>
  134. The Certification Authority Authorization (CAA) DNS Resource Record
  135. allows a DNS domain name holder to specify one or more Certification
  136. Authorities(CAs) authorized to issue certificates for that domain.
  137. </para>
  138. <para>
  139. CAA Resource Records allow a public Certification Authority to
  140. implement additional controls to reduce the risk of unintended
  141. certificate mis-issue.This document defines the syntax of the CAA
  142. record and rules for processing CAA records by certificate issuers.
  143. </para>
  144. </summary>
  145. <seealso href="https://tools.ietf.org/html/rfc6844">RFC 6844</seealso>
  146. </member>
  147. <member name="P:DnsClient.Protocol.CaaRecord.Flags">
  148. <summary>
  149. One octet containing the flags.
  150. </summary>
  151. </member>
  152. <member name="P:DnsClient.Protocol.CaaRecord.Tag">
  153. <summary>
  154. The property identifier, a sequence of US-ASCII characters.
  155. </summary>
  156. </member>
  157. <member name="P:DnsClient.Protocol.CaaRecord.Value">
  158. <summary>
  159. A sequence of octets representing the property value.
  160. Property values are encoded as binary values and MAY employ sub-formats.
  161. </summary>
  162. </member>
  163. <member name="M:DnsClient.Protocol.CaaRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Byte,System.String,System.String)">
  164. <summary>
  165. Initializes a new instance of the <see cref="T:DnsClient.Protocol.CaaRecord"/> class.
  166. </summary>
  167. <param name="info">The information.</param>
  168. <param name="flags">The flags.</param>
  169. <param name="tag">The tag.</param>
  170. <param name="value">The value.</param>
  171. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="tag"/> or <paramref name="value"/> is null.</exception>
  172. </member>
  173. <member name="M:DnsClient.Protocol.CaaRecord.RecordToString">
  174. <inheritdoc />
  175. </member>
  176. <member name="T:DnsClient.Protocol.CNameRecord">
  177. <summary>
  178. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> repesenting the canonical name for an alias.
  179. </summary>
  180. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.1">RFC 1035</seealso>
  181. </member>
  182. <member name="P:DnsClient.Protocol.CNameRecord.CanonicalName">
  183. <summary>
  184. Gets the canonical name for an alias.
  185. </summary>
  186. <value>
  187. The canonical name.
  188. </value>
  189. </member>
  190. <member name="M:DnsClient.Protocol.CNameRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
  191. <summary>
  192. Initializes a new instance of the <see cref="T:DnsClient.Protocol.CNameRecord"/> class.
  193. </summary>
  194. <param name="info">The information.</param>
  195. <param name="canonicalName">The canonical name.</param>
  196. <exception cref="T:System.ArgumentNullException">If <paramref name="canonicalName"/> or <paramref name="info"/> is null.</exception>
  197. </member>
  198. <member name="M:DnsClient.Protocol.CNameRecord.RecordToString">
  199. <inheritdoc />
  200. </member>
  201. <member name="T:DnsClient.Protocol.DnsResourceRecord">
  202. <summary>
  203. Base class for all resource records.
  204. </summary>
  205. <seealso cref="T:DnsClient.Protocol.ResourceRecordInfo" />
  206. </member>
  207. <member name="M:DnsClient.Protocol.DnsResourceRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo)">
  208. <summary>
  209. Initializes a new instance of the <see cref="T:DnsClient.Protocol.DnsResourceRecord" /> class.
  210. </summary>
  211. <param name="info">The information.</param>
  212. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
  213. </member>
  214. <member name="M:DnsClient.Protocol.DnsResourceRecord.ToString">
  215. <inheritdoc />
  216. </member>
  217. <member name="M:DnsClient.Protocol.DnsResourceRecord.ToString(System.Int32)">
  218. <summary>
  219. Same as <c>ToString</c> but offsets the <see cref="P:DnsClient.Protocol.ResourceRecordInfo.DomainName"/>
  220. by <paramref name="offset"/>.
  221. Set the offset to -32 for example to make it print nicely in consols.
  222. </summary>
  223. <param name="offset">The offset.</param>
  224. <returns>A string representing this instance.</returns>
  225. </member>
  226. <member name="M:DnsClient.Protocol.DnsResourceRecord.RecordToString">
  227. <summary>
  228. Returns the actual record's value only and not the full object representation.
  229. <see cref="M:DnsClient.Protocol.DnsResourceRecord.ToString(System.Int32)"/> uses this to compose the full string value of this instance.
  230. </summary>
  231. <returns>A string representing this record.</returns>
  232. </member>
  233. <member name="T:DnsClient.Protocol.ResourceRecordInfo">
  234. <summary>
  235. The type represents a <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>.
  236. </summary>
  237. </member>
  238. <member name="P:DnsClient.Protocol.ResourceRecordInfo.DomainName">
  239. <summary>
  240. The domain name used to query.
  241. </summary>
  242. </member>
  243. <member name="P:DnsClient.Protocol.ResourceRecordInfo.RecordType">
  244. <summary>
  245. Specifies type of resource record.
  246. </summary>
  247. </member>
  248. <member name="P:DnsClient.Protocol.ResourceRecordInfo.RecordClass">
  249. <summary>
  250. Specifies type class of resource record, mostly IN but can be CS, CH or HS .
  251. </summary>
  252. </member>
  253. <member name="P:DnsClient.Protocol.ResourceRecordInfo.TimeToLive">
  254. <summary>
  255. The TTL value for the record set by the server.
  256. </summary>
  257. </member>
  258. <member name="P:DnsClient.Protocol.ResourceRecordInfo.RawDataLength">
  259. <summary>
  260. Gets the number of bytes for this resource record stored in RDATA
  261. </summary>
  262. </member>
  263. <member name="M:DnsClient.Protocol.ResourceRecordInfo.#ctor(System.String,DnsClient.Protocol.ResourceRecordType,DnsClient.QueryClass,System.Int32,System.Int32)">
  264. <summary>
  265. Initializes a new instance of the <see cref="T:DnsClient.Protocol.ResourceRecordInfo" /> class.
  266. </summary>
  267. <param name="domainName">The domain name used by the query.</param>
  268. <param name="recordType">Type of the record.</param>
  269. <param name="recordClass">The record class.</param>
  270. <param name="timeToLive">The time to live.</param>
  271. <param name="rawDataLength">Length of the raw data.</param>
  272. <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> is null.</exception>
  273. </member>
  274. <member name="M:DnsClient.Protocol.ResourceRecordInfo.#ctor(DnsClient.DnsString,DnsClient.Protocol.ResourceRecordType,DnsClient.QueryClass,System.Int32,System.Int32)">
  275. <summary>
  276. Initializes a new instance of the <see cref="T:DnsClient.Protocol.ResourceRecordInfo" /> class.
  277. </summary>
  278. <param name="domainName">The <see cref="T:DnsClient.DnsString" /> used by the query.</param>
  279. <param name="recordType">Type of the record.</param>
  280. <param name="recordClass">The record class.</param>
  281. <param name="timeToLive">The time to live.</param>
  282. <param name="rawDataLength">Length of the raw data.</param>
  283. <exception cref="T:System.ArgumentNullException">If <paramref name="domainName" /> is null or empty.</exception>
  284. </member>
  285. <member name="T:DnsClient.Protocol.EmptyRecord">
  286. <summary>
  287. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> not representing any specifc resource record.
  288. Used if unsupported <see cref="T:DnsClient.Protocol.ResourceRecordType"/>s are found in the result.
  289. </summary>
  290. <seealso cref="T:DnsClient.Protocol.DnsResourceRecord" />
  291. </member>
  292. <member name="M:DnsClient.Protocol.EmptyRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo)">
  293. <summary>
  294. Initializes a new instance of the <see cref="T:DnsClient.Protocol.EmptyRecord"/> class.
  295. </summary>
  296. <param name="info">The information.</param>
  297. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
  298. </member>
  299. <member name="M:DnsClient.Protocol.EmptyRecord.RecordToString">
  300. <inheritdoc />
  301. </member>
  302. <member name="T:DnsClient.Protocol.HInfoRecord">
  303. <summary>
  304. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> used to acquire general information about a host.
  305. </summary>
  306. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  307. <seealso href="https://tools.ietf.org/html/rfc1010">RFC 1010</seealso>
  308. </member>
  309. <member name="P:DnsClient.Protocol.HInfoRecord.Cpu">
  310. <summary>
  311. Gets a <c>string</c> which specifies the CPU type.
  312. </summary>
  313. <value>
  314. The cpu.
  315. </value>
  316. </member>
  317. <member name="P:DnsClient.Protocol.HInfoRecord.OS">
  318. <summary>
  319. Gets a <c>string</c> which specifies the operating system type.
  320. </summary>
  321. <value>
  322. The os.
  323. </value>
  324. </member>
  325. <member name="M:DnsClient.Protocol.HInfoRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.String,System.String)">
  326. <summary>
  327. Initializes a new instance of the <see cref="T:DnsClient.Protocol.HInfoRecord"/> class.
  328. </summary>
  329. <param name="info">The information.</param>
  330. <param name="cpu">The cpu.</param>
  331. <param name="os">The os.</param>
  332. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> is null.</exception>
  333. </member>
  334. <member name="M:DnsClient.Protocol.HInfoRecord.RecordToString">
  335. <inheritdoc />
  336. </member>
  337. <member name="T:DnsClient.Protocol.MbRecord">
  338. <summary>
  339. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a domain name which specifies a host which has the specified mailbox.
  340. </summary>
  341. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.3">RFC 1035</seealso>
  342. </member>
  343. <member name="P:DnsClient.Protocol.MbRecord.MadName">
  344. <summary>
  345. Gets the domain name which specifies a host which has the specified mailbox.
  346. </summary>
  347. <value>
  348. The domain name.
  349. </value>
  350. </member>
  351. <member name="M:DnsClient.Protocol.MbRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
  352. <summary>
  353. Initializes a new instance of the <see cref="T:DnsClient.Protocol.MbRecord"/> class.
  354. </summary>
  355. <param name="info">The information.</param>
  356. <param name="domainName">The domain name.</param>
  357. <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> or <paramref name="info"/> is null.</exception>
  358. </member>
  359. <member name="M:DnsClient.Protocol.MbRecord.RecordToString">
  360. <inheritdoc />
  361. </member>
  362. <member name="T:DnsClient.Protocol.MgRecord">
  363. <summary>
  364. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a domain name which specifies a mailbox which is a member of the mail group specified by the domain name.
  365. </summary>
  366. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.6">RFC 1035</seealso>
  367. </member>
  368. <member name="P:DnsClient.Protocol.MgRecord.MgName">
  369. <summary>
  370. Gets a domain name which specifies a mailbox which is a member of the mail group specified by the domain nam.
  371. </summary>
  372. <value>
  373. The domain name.
  374. </value>
  375. </member>
  376. <member name="M:DnsClient.Protocol.MgRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
  377. <summary>
  378. Initializes a new instance of the <see cref="T:DnsClient.Protocol.MgRecord"/> class.
  379. </summary>
  380. <param name="info">The information.</param>
  381. <param name="domainName">The domain name.</param>
  382. <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> or <paramref name="info"/> is null.</exception>
  383. </member>
  384. <member name="M:DnsClient.Protocol.MgRecord.RecordToString">
  385. <inheritdoc />
  386. </member>
  387. <member name="T:DnsClient.Protocol.MInfoRecord">
  388. <summary>
  389. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending mailbox or mail list information.
  390. </summary>
  391. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  392. </member>
  393. <member name="P:DnsClient.Protocol.MInfoRecord.RMailBox">
  394. <summary>
  395. Gets the domain name which specifies a mailbox which is responsible for the mailing list or mailbox.
  396. </summary>
  397. <value>
  398. The domain name.
  399. </value>
  400. </member>
  401. <member name="P:DnsClient.Protocol.MInfoRecord.EmailBox">
  402. <summary>
  403. Gets the domain name which specifies a mailbox which is to receive error messages related to the mailing list or mailbox.
  404. </summary>
  405. <value>
  406. The domain name.
  407. </value>
  408. </member>
  409. <member name="M:DnsClient.Protocol.MInfoRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString,DnsClient.DnsString)">
  410. <summary>
  411. Initializes a new instance of the <see cref="T:DnsClient.Protocol.MInfoRecord"/> class.
  412. </summary>
  413. <param name="info">The information.</param>
  414. <param name="rmailBox">The <c>RMAILBX</c>.</param>
  415. <param name="emailBox">The <c>EMAILBX</c>.</param>
  416. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="rmailBox"/> or <paramref name="emailBox"/> is null.</exception>
  417. </member>
  418. <member name="M:DnsClient.Protocol.MInfoRecord.RecordToString">
  419. <inheritdoc />
  420. </member>
  421. <member name="T:DnsClient.Protocol.MrRecord">
  422. <summary>
  423. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a mailbox rename domain name.
  424. </summary>
  425. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
  426. </member>
  427. <member name="P:DnsClient.Protocol.MrRecord.NewName">
  428. <summary>
  429. Gets the domain name which specifies a mailbox which is the proper rename of the specified mailbox.
  430. </summary>
  431. <value>
  432. The domain name.
  433. </value>
  434. </member>
  435. <member name="M:DnsClient.Protocol.MrRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
  436. <summary>
  437. Initializes a new instance of the <see cref="T:DnsClient.Protocol.MrRecord"/> class.
  438. </summary>
  439. <param name="info">The information.</param>
  440. <param name="name">The domain name.</param>
  441. <exception cref="T:System.ArgumentNullException">If <paramref name="name"/> or <paramref name="info"/> is null.</exception>
  442. </member>
  443. <member name="M:DnsClient.Protocol.MrRecord.RecordToString">
  444. <inheritdoc />
  445. </member>
  446. <member name="T:DnsClient.Protocol.MxRecord">
  447. <summary>
  448. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a mail exchange.
  449. </summary>
  450. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.9">RFC 1035</seealso>
  451. <seealso href="https://tools.ietf.org/html/rfc974">RFC 974</seealso>
  452. </member>
  453. <member name="P:DnsClient.Protocol.MxRecord.Preference">
  454. <summary>
  455. Gets a 16 bit integer which specifies the preference given to
  456. this RR among others at the same owner.
  457. Lower values are preferred.
  458. </summary>
  459. </member>
  460. <member name="P:DnsClient.Protocol.MxRecord.Exchange">
  461. <summary>
  462. A domain name which specifies a host willing to act as a mail exchange.
  463. </summary>
  464. </member>
  465. <member name="M:DnsClient.Protocol.MxRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.UInt16,DnsClient.DnsString)">
  466. <summary>
  467. Initializes a new instance of the <see cref="T:DnsClient.Protocol.MxRecord"/> class.
  468. </summary>
  469. <param name="info">The information.</param>
  470. <param name="preference">The preference.</param>
  471. <param name="domainName">Name of the domain.</param>
  472. <exception cref="T:System.ArgumentNullException">If <paramref name="domainName"/> or <paramref name="info"/> is null.</exception>
  473. </member>
  474. <member name="M:DnsClient.Protocol.MxRecord.RecordToString">
  475. <inheritdoc />
  476. </member>
  477. <member name="T:DnsClient.Protocol.NsRecord">
  478. <summary>
  479. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending an authoritative name server.
  480. </summary>
  481. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  482. </member>
  483. <member name="P:DnsClient.Protocol.NsRecord.NSDName">
  484. <summary>
  485. Gets the domain name which specifies a host which should be authoritative for the specified class and domain.
  486. </summary>
  487. <value>
  488. The domain name.
  489. </value>
  490. </member>
  491. <member name="M:DnsClient.Protocol.NsRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
  492. <summary>
  493. Initializes a new instance of the <see cref="T:DnsClient.Protocol.NsRecord"/> class.
  494. </summary>
  495. <param name="info">The information.</param>
  496. <param name="name">The name.</param>
  497. <exception cref="T:System.ArgumentNullException">If <paramref name="name"/> or <paramref name="info"/> is null.</exception>
  498. </member>
  499. <member name="M:DnsClient.Protocol.NsRecord.RecordToString">
  500. <inheritdoc />
  501. </member>
  502. <member name="T:DnsClient.Protocol.NullRecord">
  503. <summary>
  504. Experimental RR, not sure if the implementation is actually correct either (not tested).
  505. </summary>
  506. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
  507. </member>
  508. <member name="P:DnsClient.Protocol.NullRecord.Anything">
  509. <summary>
  510. Gets any data stored in this record.
  511. </summary>
  512. <value>
  513. The byte array.
  514. </value>
  515. </member>
  516. <member name="M:DnsClient.Protocol.NullRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Byte[])">
  517. <summary>
  518. Initializes a new instance of the <see cref="T:DnsClient.Protocol.NullRecord" /> class.
  519. </summary>
  520. <param name="info">The information.</param>
  521. <param name="anything">Anything.</param>
  522. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="anything"/> is null.</exception>
  523. </member>
  524. <member name="M:DnsClient.Protocol.NullRecord.RecordToString">
  525. <inheritdoc />
  526. </member>
  527. <member name="T:DnsClient.Protocol.Options.OptRecord">
  528. <summary>
  529. A DNS resource record represending an IP address.
  530. Hosts that have multiple Internet addresses will have multiple A records.
  531. </summary>
  532. </member>
  533. <member name="M:DnsClient.Protocol.Options.OptRecord.RecordToString">
  534. <inheritdoc />
  535. </member>
  536. <member name="T:DnsClient.Protocol.PtrRecord">
  537. <summary>
  538. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a pointer. These RRs are used
  539. in special domains to point to some other location in the domain space.
  540. </summary>
  541. <seealso cref="T:DnsClient.Protocol.DnsResourceRecord" />
  542. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.12">RFC 1035</seealso>
  543. </member>
  544. <member name="P:DnsClient.Protocol.PtrRecord.PtrDomainName">
  545. <summary>
  546. Gets the domain name which points to some location in the domain name space.
  547. </summary>
  548. <value>
  549. The domain name.
  550. </value>
  551. </member>
  552. <member name="M:DnsClient.Protocol.PtrRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString)">
  553. <summary>
  554. Initializes a new instance of the <see cref="T:DnsClient.Protocol.PtrRecord"/> class.
  555. </summary>
  556. <param name="info">The information.</param>
  557. <param name="ptrDomainName">The domain name.</param>
  558. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="ptrDomainName"/> is null.</exception>
  559. </member>
  560. <member name="M:DnsClient.Protocol.PtrRecord.RecordToString">
  561. <inheritdoc />
  562. </member>
  563. <member name="T:DnsClient.Protocol.ResourceRecordType">
  564. <summary>
  565. The resource record types. The <c>enum</c> contains only the types supported by this library at this moment.
  566. The <see cref="T:DnsClient.Protocol.ResourceRecordType"/> is used to identify any <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>.
  567. <para>
  568. Resource record types are a subset of <see cref="T:DnsClient.QueryType"/>.
  569. </para>
  570. </summary>
  571. <seealso cref="T:DnsClient.Protocol.DnsResourceRecord"/>
  572. <seealso cref="T:DnsClient.Protocol.ResourceRecordType"/>
  573. </member>
  574. <member name="F:DnsClient.Protocol.ResourceRecordType.A">
  575. <summary>
  576. A host address.
  577. </summary>
  578. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  579. <seealso cref="T:DnsClient.Protocol.ARecord"/>
  580. </member>
  581. <member name="F:DnsClient.Protocol.ResourceRecordType.NS">
  582. <summary>
  583. An authoritative name server.
  584. </summary>
  585. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  586. <seealso cref="T:DnsClient.Protocol.NsRecord"/>
  587. </member>
  588. <member name="F:DnsClient.Protocol.ResourceRecordType.MD">
  589. <summary>
  590. A mail destination (OBSOLETE - use MX).
  591. </summary>
  592. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  593. </member>
  594. <member name="F:DnsClient.Protocol.ResourceRecordType.MF">
  595. <summary>
  596. A mail forwarder (OBSOLETE - use MX).
  597. </summary>
  598. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  599. </member>
  600. <member name="F:DnsClient.Protocol.ResourceRecordType.CNAME">
  601. <summary>
  602. The canonical name for an alias.
  603. </summary>
  604. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.1">RFC 1035</seealso>
  605. <seealso cref="T:DnsClient.Protocol.CNameRecord"/>
  606. </member>
  607. <member name="F:DnsClient.Protocol.ResourceRecordType.SOA">
  608. <summary>
  609. Marks the start of a zone of authority.
  610. </summary>
  611. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.13">RFC 1035</seealso>
  612. <seealso cref="T:DnsClient.Protocol.SoaRecord"/>
  613. </member>
  614. <member name="F:DnsClient.Protocol.ResourceRecordType.MB">
  615. <summary>
  616. A mailbox domain name (EXPERIMENTAL).
  617. </summary>
  618. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.3">RFC 1035</seealso>
  619. <seealso cref="T:DnsClient.Protocol.MbRecord"/>
  620. </member>
  621. <member name="F:DnsClient.Protocol.ResourceRecordType.MG">
  622. <summary>
  623. A mail group member (EXPERIMENTAL).
  624. </summary>
  625. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.6">RFC 1035</seealso>
  626. <seealso cref="T:DnsClient.Protocol.MgRecord"/>
  627. </member>
  628. <member name="F:DnsClient.Protocol.ResourceRecordType.MR">
  629. <summary>
  630. A mailbox rename domain name (EXPERIMENTAL).
  631. </summary>
  632. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
  633. <seealso cref="T:DnsClient.Protocol.MrRecord"/>
  634. </member>
  635. <member name="F:DnsClient.Protocol.ResourceRecordType.NULL">
  636. <summary>
  637. A Null resource record (EXPERIMENTAL).
  638. </summary>
  639. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
  640. <seealso cref="T:DnsClient.Protocol.NullRecord"/>
  641. </member>
  642. <member name="F:DnsClient.Protocol.ResourceRecordType.WKS">
  643. <summary>
  644. A well known service description.
  645. </summary>
  646. <seealso href="https://tools.ietf.org/html/rfc3232">RFC 3232</seealso>
  647. <seealso cref="T:DnsClient.Protocol.WksRecord"/>
  648. </member>
  649. <member name="F:DnsClient.Protocol.ResourceRecordType.PTR">
  650. <summary>
  651. A domain name pointer.
  652. </summary>
  653. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.12">RFC 1035</seealso>
  654. <seealso cref="T:DnsClient.Protocol.PtrRecord"/>
  655. </member>
  656. <member name="F:DnsClient.Protocol.ResourceRecordType.HINFO">
  657. <summary>
  658. Host information.
  659. </summary>
  660. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  661. <seealso href="https://tools.ietf.org/html/rfc1010">RFC 1010</seealso>
  662. <seealso cref="T:DnsClient.Protocol.HInfoRecord"/>
  663. </member>
  664. <member name="F:DnsClient.Protocol.ResourceRecordType.MINFO">
  665. <summary>
  666. Mailbox or mail list information.
  667. </summary>
  668. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  669. <seealso cref="T:DnsClient.Protocol.MInfoRecord"/>
  670. </member>
  671. <member name="F:DnsClient.Protocol.ResourceRecordType.MX">
  672. <summary>
  673. Mail exchange.
  674. </summary>
  675. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.9">RFC 1035</seealso>
  676. <seealso href="https://tools.ietf.org/html/rfc974">RFC 974</seealso>
  677. <seealso cref="T:DnsClient.Protocol.MxRecord"/>
  678. </member>
  679. <member name="F:DnsClient.Protocol.ResourceRecordType.TXT">
  680. <summary>
  681. Text resources.
  682. </summary>
  683. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3">RFC 1035</seealso>
  684. <seealso href="https://tools.ietf.org/html/rfc1464">RFC 1464</seealso>
  685. <seealso cref="T:DnsClient.Protocol.TxtRecord"/>
  686. </member>
  687. <member name="F:DnsClient.Protocol.ResourceRecordType.RP">
  688. <summary>
  689. Responsible Person.
  690. </summary>
  691. <seealso href="https://tools.ietf.org/html/rfc1183">RFC 1183</seealso>
  692. <seealso cref="T:DnsClient.Protocol.RpRecord"/>
  693. </member>
  694. <member name="F:DnsClient.Protocol.ResourceRecordType.AFSDB">
  695. <summary>
  696. AFS Data Base location.
  697. </summary>
  698. <seealso href="https://tools.ietf.org/html/rfc1183#section-1">RFC 1183</seealso>
  699. <seealso href="https://tools.ietf.org/html/rfc5864">RFC 5864</seealso>
  700. <seealso cref="T:DnsClient.Protocol.AfsDbRecord"/>
  701. </member>
  702. <member name="F:DnsClient.Protocol.ResourceRecordType.AAAA">
  703. <summary>
  704. An IPv6 host address.
  705. </summary>
  706. <seealso href="https://tools.ietf.org/html/rfc3596#section-2.2">RFC 3596</seealso>
  707. <seealso cref="T:DnsClient.Protocol.AaaaRecord"/>
  708. </member>
  709. <member name="F:DnsClient.Protocol.ResourceRecordType.SRV">
  710. <summary>
  711. A resource record which specifies the location of the server(s) for a specific protocol and domain.
  712. </summary>
  713. <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
  714. <seealso cref="T:DnsClient.Protocol.SrvRecord"/>
  715. </member>
  716. <member name="F:DnsClient.Protocol.ResourceRecordType.OPT">
  717. <summary>
  718. Option record.
  719. </summary>
  720. <seealso href="https://tools.ietf.org/html/rfc6891">RFC 6891</seealso>
  721. </member>
  722. <member name="F:DnsClient.Protocol.ResourceRecordType.RRSIG">
  723. <summary>
  724. RRSIG rfc3755.
  725. </summary>
  726. <seealso href="https://tools.ietf.org/html/rfc3755">RFC 3755</seealso>
  727. </member>
  728. <member name="F:DnsClient.Protocol.ResourceRecordType.URI">
  729. <summary>
  730. A Uniform Resource Identifier (URI) resource record.
  731. </summary>
  732. <seealso href="https://tools.ietf.org/html/rfc7553">RFC 7553</seealso>
  733. <seealso cref="T:DnsClient.Protocol.UriRecord"/>
  734. </member>
  735. <member name="F:DnsClient.Protocol.ResourceRecordType.CAA">
  736. <summary>
  737. A certification authority authorization.
  738. </summary>
  739. <seealso href="https://tools.ietf.org/html/rfc6844">RFC 6844</seealso>
  740. <seealso cref="T:DnsClient.Protocol.CaaRecord"/>
  741. </member>
  742. <member name="T:DnsClient.Protocol.RpRecord">
  743. <summary>
  744. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a responsible person.
  745. </summary>
  746. <seealso href="https://tools.ietf.org/html/rfc1183#section-2.2">RFC 1183</seealso>
  747. </member>
  748. <member name="P:DnsClient.Protocol.RpRecord.MailboxDomainName">
  749. <summary>
  750. Gets a domain name that specifies the mailbox for the responsible person.
  751. </summary>
  752. <value>
  753. The mailbox domain.
  754. </value>
  755. </member>
  756. <member name="P:DnsClient.Protocol.RpRecord.TextDomainName">
  757. <summary>
  758. Gets a domain name for which TXT RR's exist.
  759. </summary>
  760. <value>
  761. The text domain.
  762. </value>
  763. </member>
  764. <member name="M:DnsClient.Protocol.RpRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString,DnsClient.DnsString)">
  765. <summary>
  766. Initializes a new instance of the <see cref="T:DnsClient.Protocol.RpRecord"/> class.
  767. </summary>
  768. <param name="info">The information.</param>
  769. <param name="mailbox">The mailbox domain.</param>
  770. <param name="textName">The text domain.</param>
  771. <exception cref="T:System.ArgumentNullException">
  772. If <paramref name="info"/> or <paramref name="mailbox"/> or <paramref name="textName"/> is null.
  773. </exception>
  774. </member>
  775. <member name="M:DnsClient.Protocol.RpRecord.RecordToString">
  776. <inheritdoc />
  777. </member>
  778. <member name="T:DnsClient.Protocol.SoaRecord">
  779. <summary>
  780. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a SOA (Start Of Authority) record.
  781. </summary>
  782. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.13">RFC 1035</seealso>
  783. </member>
  784. <member name="P:DnsClient.Protocol.SoaRecord.Expire">
  785. <summary>
  786. Gets a 32 bit time value that specifies the upper limit on
  787. the time interval that can elapse before the zone is no
  788. longer authoritative.
  789. </summary>
  790. <value>
  791. The expiration.
  792. </value>
  793. </member>
  794. <member name="P:DnsClient.Protocol.SoaRecord.Minimum">
  795. <summary>
  796. Gets the unsigned 32 bit minimum TTL field that should be
  797. exported with any RR from this zone.
  798. </summary>
  799. <value>
  800. The minimum TTL.
  801. </value>
  802. </member>
  803. <member name="P:DnsClient.Protocol.SoaRecord.MName">
  804. <summary>
  805. Gets the domain name of the name server that was the original or primary source of data for this zone.
  806. </summary>
  807. <value>
  808. The doman name.
  809. </value>
  810. </member>
  811. <member name="P:DnsClient.Protocol.SoaRecord.Refresh">
  812. <summary>
  813. Gets a 32 bit time interval before the zone should be refreshed.
  814. </summary>
  815. <value>
  816. The refresh time.
  817. </value>
  818. </member>
  819. <member name="P:DnsClient.Protocol.SoaRecord.Retry">
  820. <summary>
  821. Gets a 32 bit time interval that should elapse before a failed refresh should be retried.
  822. </summary>
  823. <value>
  824. The retry time.
  825. </value>
  826. </member>
  827. <member name="P:DnsClient.Protocol.SoaRecord.RName">
  828. <summary>
  829. Gets a domain name which specifies the mailbox of the person responsible for this zone.
  830. </summary>
  831. <value>
  832. The responsible mailbox domain name.
  833. </value>
  834. </member>
  835. <member name="P:DnsClient.Protocol.SoaRecord.Serial">
  836. <summary>
  837. Gets the unsigned 32 bit version number of the original copy
  838. of the zone.Zone transfers preserve this value. This value wraps and should be compared using sequence space arithmetic.
  839. </summary>
  840. <value>
  841. The serial number.
  842. </value>
  843. </member>
  844. <member name="M:DnsClient.Protocol.SoaRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,DnsClient.DnsString,DnsClient.DnsString,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
  845. <summary>
  846. Initializes a new instance of the <see cref="T:DnsClient.Protocol.SoaRecord" /> class.
  847. </summary>
  848. <param name="info">The information.</param>
  849. <param name="mName">Name original domain name.</param>
  850. <param name="rName">Name responsible domain name.</param>
  851. <param name="serial">The serial number.</param>
  852. <param name="refresh">The refresh time.</param>
  853. <param name="retry">The retry time.</param>
  854. <param name="expire">The expire time.</param>
  855. <param name="minimum">The minimum TTL.</param>
  856. <exception cref="T:System.ArgumentNullException">
  857. If <paramref name="info"/> or <paramref name="mName"/> or <paramref name="rName"/> is null.
  858. </exception>
  859. </member>
  860. <member name="M:DnsClient.Protocol.SoaRecord.RecordToString">
  861. <inheritdoc />
  862. </member>
  863. <member name="T:DnsClient.Protocol.SrvRecord">
  864. <summary>
  865. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a location of the server(s) for a specific protocol and domain.
  866. </summary>
  867. <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
  868. </member>
  869. <member name="P:DnsClient.Protocol.SrvRecord.Port">
  870. <summary>
  871. Gets the port.
  872. </summary>
  873. <value>
  874. The port.
  875. </value>
  876. </member>
  877. <member name="P:DnsClient.Protocol.SrvRecord.Priority">
  878. <summary>
  879. Gets the priority.
  880. </summary>
  881. <value>
  882. The priority.
  883. </value>
  884. </member>
  885. <member name="P:DnsClient.Protocol.SrvRecord.Target">
  886. <summary>
  887. Gets the target domain name.
  888. </summary>
  889. <value>
  890. The target.
  891. </value>
  892. </member>
  893. <member name="P:DnsClient.Protocol.SrvRecord.Weight">
  894. <summary>
  895. Gets the weight.
  896. </summary>
  897. <value>
  898. The weight.
  899. </value>
  900. </member>
  901. <member name="M:DnsClient.Protocol.SrvRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.UInt16,System.UInt16,System.UInt16,DnsClient.DnsString)">
  902. <summary>
  903. Initializes a new instance of the <see cref="T:DnsClient.Protocol.SrvRecord" /> class.
  904. </summary>
  905. <param name="info">The information.</param>
  906. <param name="priority">The priority.</param>
  907. <param name="weigth">The weigth.</param>
  908. <param name="port">The port.</param>
  909. <param name="target">The target.</param>
  910. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="target"/> is null.</exception>
  911. </member>
  912. <member name="M:DnsClient.Protocol.SrvRecord.RecordToString">
  913. <inheritdoc />
  914. </member>
  915. <member name="T:DnsClient.Protocol.TxtRecord">
  916. <summary>
  917. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a text resource.
  918. <para>
  919. TXT RRs are used to hold descriptive text. The semantics of the text
  920. depends on the domain where it is found.
  921. </para>
  922. </summary>
  923. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3">RFC 1035</seealso>
  924. <seealso href="https://tools.ietf.org/html/rfc1464">RFC 1464</seealso>
  925. </member>
  926. <member name="P:DnsClient.Protocol.TxtRecord.EscapedText">
  927. <summary>
  928. Gets the list of TXT values of this resource record in escaped form, valid for root file.
  929. </summary>
  930. <remarks>
  931. See https://tools.ietf.org/html/rfc1035#section-5.1 for escape details.
  932. </remarks>
  933. </member>
  934. <member name="P:DnsClient.Protocol.TxtRecord.Text">
  935. <summary>
  936. Gets the actual <c>UTF8</c> representation of the text values of this record.
  937. </summary>
  938. </member>
  939. <member name="M:DnsClient.Protocol.TxtRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.String[],System.String[])">
  940. <summary>
  941. Initializes a new instance of the <see cref="T:DnsClient.Protocol.TxtRecord"/> class.
  942. </summary>
  943. <param name="info">The information.</param>
  944. <param name="values">The values.</param>
  945. <param name="utf8Values">The UTF8 values.</param>
  946. <exception cref="T:System.ArgumentNullException">
  947. If <paramref name="info"/> or <paramref name="utf8Values"/> or <paramref name="values"/> is null.
  948. </exception>
  949. </member>
  950. <member name="M:DnsClient.Protocol.TxtRecord.RecordToString">
  951. <inheritdoc />
  952. </member>
  953. <member name="T:DnsClient.Protocol.UriRecord">
  954. <summary>
  955. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a Uniform Resource Identifier (URI) resource.
  956. </summary>
  957. <seealso href="https://tools.ietf.org/html/rfc7553">RFC 7553</seealso>
  958. </member>
  959. <member name="P:DnsClient.Protocol.UriRecord.Target">
  960. <summary>
  961. Gets or sets the target Uri.
  962. </summary>
  963. <value>
  964. The target.
  965. </value>
  966. </member>
  967. <member name="P:DnsClient.Protocol.UriRecord.Priority">
  968. <summary>
  969. Gets or sets the priority.
  970. </summary>
  971. <value>
  972. The priority.
  973. </value>
  974. </member>
  975. <member name="P:DnsClient.Protocol.UriRecord.Weigth">
  976. <summary>
  977. Gets or sets the weigth.
  978. </summary>
  979. <value>
  980. The weigth.
  981. </value>
  982. </member>
  983. <member name="M:DnsClient.Protocol.UriRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.UInt16,System.UInt16,System.String)">
  984. <summary>
  985. Initializes a new instance of the <see cref="T:DnsClient.Protocol.UriRecord"/> class.
  986. </summary>
  987. <param name="info">The information.</param>
  988. <param name="priority">The priority.</param>
  989. <param name="weight">The weight.</param>
  990. <param name="target">The target.</param>
  991. <exception cref="T:System.ArgumentNullException">If <paramref name="info"/> or <paramref name="target"/> is null.</exception>
  992. </member>
  993. <member name="M:DnsClient.Protocol.UriRecord.RecordToString">
  994. <inheritdoc />
  995. </member>
  996. <member name="T:DnsClient.Protocol.WksRecord">
  997. <summary>
  998. A <see cref="T:DnsClient.Protocol.DnsResourceRecord"/> represending a Well Known Service description.
  999. </summary>
  1000. <remarks>
  1001. Instead of describing the supported protocols in RFCs, the list is now published on http://www.iana.org/.
  1002. </remarks>
  1003. <seealso href="http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml"/>
  1004. <seealso href="https://tools.ietf.org/html/rfc3232">RFC 3232, the most current update.</seealso>
  1005. </member>
  1006. <member name="P:DnsClient.Protocol.WksRecord.Address">
  1007. <summary>
  1008. Gets the address.
  1009. </summary>
  1010. <value>
  1011. The address.
  1012. </value>
  1013. </member>
  1014. <member name="P:DnsClient.Protocol.WksRecord.Protocol">
  1015. <summary>
  1016. Gets the Protocol.
  1017. </summary>
  1018. <remarks>
  1019. According to https://tools.ietf.org/html/rfc6335, only ports for TCP, UDP, DCCP and SCTP services will be assigned.
  1020. </remarks>
  1021. </member>
  1022. <member name="P:DnsClient.Protocol.WksRecord.Bitmap">
  1023. <summary>
  1024. Gets the binary raw bitmap.
  1025. Use <see cref="P:DnsClient.Protocol.WksRecord.Ports"/> to determine which ports are actually configured.
  1026. </summary>
  1027. </member>
  1028. <member name="P:DnsClient.Protocol.WksRecord.Ports">
  1029. <summary>
  1030. Gets the list of assigned ports.
  1031. <para>
  1032. For example, if this list contains port 25, which is assigned to
  1033. the <c>SMTP</c> service. This means that a SMTP services
  1034. is running on <see cref="P:DnsClient.Protocol.WksRecord.Address"/> with transport <see cref="P:DnsClient.Protocol.WksRecord.Protocol"/>.
  1035. </para>
  1036. </summary>
  1037. <seealso href="http://www.iana.org/assignments/port-numbers">Port numbers</seealso>
  1038. </member>
  1039. <member name="M:DnsClient.Protocol.WksRecord.#ctor(DnsClient.Protocol.ResourceRecordInfo,System.Net.IPAddress,System.Int32,System.Byte[])">
  1040. <summary>
  1041. Initializes a new instance of the <see cref="T:DnsClient.Protocol.WksRecord" /> class.
  1042. </summary>
  1043. <param name="info">The information.</param>
  1044. <param name="address">The address.</param>
  1045. <param name="protocol">The protocol.</param>
  1046. <param name="bitmap">The raw data.</param>
  1047. <exception cref="T:System.ArgumentNullException">
  1048. If <paramref name="address"/> or <paramref name="info"/> or <paramref name="bitmap"/> is null.
  1049. </exception>
  1050. </member>
  1051. <member name="M:DnsClient.Protocol.WksRecord.RecordToString">
  1052. <inheritdoc />
  1053. </member>
  1054. <member name="T:DnsClient.DnsOpCode">
  1055. <summary>
  1056. Specifies kind of query in this message.
  1057. This value is set by the originator of a query and copied into the response.
  1058. </summary>
  1059. </member>
  1060. <member name="F:DnsClient.DnsOpCode.Query">
  1061. <summary>
  1062. A standard query.
  1063. </summary>
  1064. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1065. </member>
  1066. <member name="F:DnsClient.DnsOpCode.IQuery">
  1067. <summary>
  1068. An inverse query.
  1069. </summary>
  1070. <seealso href="https://tools.ietf.org/html/rfc3425">RFC 3425</seealso>
  1071. </member>
  1072. <member name="F:DnsClient.DnsOpCode.Status">
  1073. <summary>
  1074. A server status request.
  1075. </summary>
  1076. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1077. </member>
  1078. <member name="F:DnsClient.DnsOpCode.Unassinged3">
  1079. <summary>
  1080. Unassigned value
  1081. </summary>
  1082. </member>
  1083. <member name="F:DnsClient.DnsOpCode.Notify">
  1084. <summary>
  1085. Notify query.
  1086. </summary>
  1087. <seealso href="https://tools.ietf.org/html/rfc1996">RFC 1996</seealso>
  1088. </member>
  1089. <member name="F:DnsClient.DnsOpCode.Update">
  1090. <summary>
  1091. Update query.
  1092. </summary>
  1093. <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
  1094. </member>
  1095. <member name="F:DnsClient.DnsOpCode.Unassinged6">
  1096. <summary>
  1097. Unassigned value
  1098. </summary>
  1099. </member>
  1100. <member name="F:DnsClient.DnsOpCode.Unassinged7">
  1101. <summary>
  1102. Unassigned value
  1103. </summary>
  1104. </member>
  1105. <member name="F:DnsClient.DnsOpCode.Unassinged8">
  1106. <summary>
  1107. Unassigned value
  1108. </summary>
  1109. </member>
  1110. <member name="F:DnsClient.DnsOpCode.Unassinged9">
  1111. <summary>
  1112. Unassigned value
  1113. </summary>
  1114. </member>
  1115. <member name="F:DnsClient.DnsOpCode.Unassinged10">
  1116. <summary>
  1117. Unassigned value
  1118. </summary>
  1119. </member>
  1120. <member name="F:DnsClient.DnsOpCode.Unassinged11">
  1121. <summary>
  1122. Unassigned value
  1123. </summary>
  1124. </member>
  1125. <member name="F:DnsClient.DnsOpCode.Unassinged12">
  1126. <summary>
  1127. Unassigned value
  1128. </summary>
  1129. </member>
  1130. <member name="F:DnsClient.DnsOpCode.Unassinged13">
  1131. <summary>
  1132. Unassigned value
  1133. </summary>
  1134. </member>
  1135. <member name="F:DnsClient.DnsOpCode.Unassinged14">
  1136. <summary>
  1137. Unassigned value
  1138. </summary>
  1139. </member>
  1140. <member name="F:DnsClient.DnsOpCode.Unassinged15">
  1141. <summary>
  1142. Unassigned value
  1143. </summary>
  1144. </member>
  1145. <member name="T:DnsClient.DnsQueryExtensions">
  1146. <summary>
  1147. Extension methods for the <see cref="T:DnsClient.IDnsQuery"/> contract.
  1148. <para>
  1149. The methods implement common queries which are more complex and have some business logic.
  1150. </para>
  1151. </summary>
  1152. </member>
  1153. <member name="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.String)">
  1154. <summary>
  1155. The <c>GetHostEntry</c> method queries a DNS server for the IP addresses and aliases associated with the <paramref name="hostNameOrAddress"/>.
  1156. In case <paramref name="hostNameOrAddress"/> is an <see cref="T:System.Net.IPAddress"/>, <c>GetHostEntry</c> does a reverse lookup on that first to determine the hostname.
  1157. <para>
  1158. IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
  1159. <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
  1160. The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname or <paramref name="hostNameOrAddress"/>.
  1161. </para>
  1162. </summary>
  1163. <example>
  1164. The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.String)"/> method to resolve an IP address or hostname to an <see cref="T:System.Net.IPHostEntry"/> instance.
  1165. <code>
  1166. <![CDATA[
  1167. public static void PrintHostEntry(string hostOrIp)
  1168. {
  1169. var lookup = new LookupClient();
  1170. IPHostEntry hostEntry = lookup.GetHostEntry(hostOrIp);
  1171. Console.WriteLine(hostEntry.HostName);
  1172. foreach (var ip in hostEntry.AddressList)
  1173. {
  1174. Console.WriteLine(ip);
  1175. }
  1176. foreach (var alias in hostEntry.Aliases)
  1177. {
  1178. Console.WriteLine(alias);
  1179. }
  1180. }
  1181. ]]>
  1182. </code>
  1183. </example>
  1184. <remarks>
  1185. The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
  1186. <list type="bullet">
  1187. <item>
  1188. <term>
  1189. In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
  1190. </term>
  1191. </item><item>
  1192. <term>
  1193. If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
  1194. </term>
  1195. </item><item>
  1196. <term>
  1197. If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
  1198. </term>
  1199. </item>
  1200. </list>
  1201. </remarks>
  1202. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1203. <param name="hostNameOrAddress">The <see cref="T:System.Net.IPAddress"/> or host name to query for.</param>
  1204. <returns>
  1205. An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="hostNameOrAddress"/>.
  1206. In case the <paramref name="hostNameOrAddress"/> could not be resolved to a domain name, this method returns <c>null</c>,
  1207. unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
  1208. </returns>
  1209. <exception cref="T:System.ArgumentNullException">If <paramref name="hostNameOrAddress"/> is null.</exception>
  1210. <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
  1211. </member>
  1212. <member name="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.String)">
  1213. <summary>
  1214. The <c>GetHostEntryAsync</c> method queries a DNS server for the IP addresses and aliases associated with the <paramref name="hostNameOrAddress"/>.
  1215. In case <paramref name="hostNameOrAddress"/> is an <see cref="T:System.Net.IPAddress"/>, <c>GetHostEntry</c> does a reverse lookup on that first to determine the hostname.
  1216. <para>
  1217. IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
  1218. <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
  1219. The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname or <paramref name="hostNameOrAddress"/>.
  1220. </para>
  1221. </summary>
  1222. <example>
  1223. The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.String)"/> method to resolve an IP address or hostname to an <see cref="T:System.Net.IPHostEntry"/> instance.
  1224. <code>
  1225. <![CDATA[
  1226. public static async Task PrintHostEntry(string hostOrIp)
  1227. {
  1228. var lookup = new LookupClient();
  1229. IPHostEntry hostEntry = await lookup.GetHostEntryAsync(hostOrIp);
  1230. Console.WriteLine(hostEntry.HostName);
  1231. foreach (var ip in hostEntry.AddressList)
  1232. {
  1233. Console.WriteLine(ip);
  1234. }
  1235. foreach (var alias in hostEntry.Aliases)
  1236. {
  1237. Console.WriteLine(alias);
  1238. }
  1239. }
  1240. ]]>
  1241. </code>
  1242. </example>
  1243. <remarks>
  1244. The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
  1245. <list type="bullet">
  1246. <item>
  1247. <term>
  1248. In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
  1249. </term>
  1250. </item><item>
  1251. <term>
  1252. If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
  1253. </term>
  1254. </item><item>
  1255. <term>
  1256. If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
  1257. </term>
  1258. </item>
  1259. </list>
  1260. </remarks>
  1261. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1262. <param name="hostNameOrAddress">The <see cref="T:System.Net.IPAddress"/> or host name to query for.</param>
  1263. <returns>
  1264. An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="hostNameOrAddress"/>.
  1265. In case the <paramref name="hostNameOrAddress"/> could not be resolved to a domain name, this method returns <c>null</c>,
  1266. unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
  1267. </returns>
  1268. <exception cref="T:System.ArgumentNullException">If <paramref name="hostNameOrAddress"/> is null.</exception>
  1269. <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
  1270. </member>
  1271. <member name="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.Net.IPAddress)">
  1272. <summary>
  1273. The <c>GetHostEntry</c> method does a reverse lookup on the IP <paramref name="address"/>,
  1274. and queries a DNS server for the IP addresses and aliases associated with the resolved hostname.
  1275. <para>
  1276. IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
  1277. <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
  1278. The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname of the <paramref name="address"/>.
  1279. </para>
  1280. </summary>
  1281. <example>
  1282. The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntry(DnsClient.IDnsQuery,System.Net.IPAddress)"/> method to resolve an IP address to an <see cref="T:System.Net.IPHostEntry"/> instance.
  1283. <code>
  1284. <![CDATA[
  1285. public static void PrintHostEntry(IPAddress address)
  1286. {
  1287. var lookup = new LookupClient();
  1288. IPHostEntry hostEntry = lookup.GetHostEntry(address);
  1289. Console.WriteLine(hostEntry.HostName);
  1290. foreach (var ip in hostEntry.AddressList)
  1291. {
  1292. Console.WriteLine(ip);
  1293. }
  1294. foreach (var alias in hostEntry.Aliases)
  1295. {
  1296. Console.WriteLine(alias);
  1297. }
  1298. }
  1299. ]]>
  1300. </code>
  1301. </example>
  1302. <remarks>
  1303. The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
  1304. <list type="bullet">
  1305. <item>
  1306. <term>
  1307. In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
  1308. </term>
  1309. </item><item>
  1310. <term>
  1311. If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
  1312. </term>
  1313. </item><item>
  1314. <term>
  1315. If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
  1316. </term>
  1317. </item>
  1318. </list>
  1319. </remarks>
  1320. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1321. <param name="address">The <see cref="T:System.Net.IPAddress"/> to query for.</param>
  1322. <returns>
  1323. An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="address"/>.
  1324. In case the <paramref name="address"/> could not be resolved to a domain name, this method returns <c>null</c>,
  1325. unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
  1326. </returns>
  1327. <exception cref="T:System.ArgumentNullException">If <paramref name="address"/> is null.</exception>
  1328. <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
  1329. </member>
  1330. <member name="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.Net.IPAddress)">
  1331. <summary>
  1332. The <c>GetHostEntryAsync</c> method does a reverse lookup on the IP <paramref name="address"/>,
  1333. and queries a DNS server for the IP addresses and aliases associated with the resolved hostname.
  1334. <para>
  1335. IP addresses found are returned in <see cref="P:System.Net.IPHostEntry.AddressList"/>.
  1336. <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records are used to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/>.<br/>
  1337. The <see cref="P:System.Net.IPHostEntry.HostName"/> property will be set to the resolved hostname of the <paramref name="address"/>.
  1338. </para>
  1339. </summary>
  1340. <example>
  1341. The following code example uses the <see cref="M:DnsClient.DnsQueryExtensions.GetHostEntryAsync(DnsClient.IDnsQuery,System.Net.IPAddress)"/> method to resolve an IP address to an <see cref="T:System.Net.IPHostEntry"/> instance.
  1342. <code>
  1343. <![CDATA[
  1344. public static async Task PrintHostEntry(IPAddress address)
  1345. {
  1346. var lookup = new LookupClient();
  1347. IPHostEntry hostEntry = await lookup.GetHostEntryAsync(address);
  1348. Console.WriteLine(hostEntry.HostName);
  1349. foreach (var ip in hostEntry.AddressList)
  1350. {
  1351. Console.WriteLine(ip);
  1352. }
  1353. foreach (var alias in hostEntry.Aliases)
  1354. {
  1355. Console.WriteLine(alias);
  1356. }
  1357. }
  1358. ]]>
  1359. </code>
  1360. </example>
  1361. <remarks>
  1362. The method has some logic to populate the <see cref="P:System.Net.IPHostEntry.Aliases"/> list:
  1363. <list type="bullet">
  1364. <item>
  1365. <term>
  1366. In case of sub-domain queries or similar, there might be multiple <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> records for one <see cref="T:System.Net.IPAddress"/>,
  1367. </term>
  1368. </item><item>
  1369. <term>
  1370. If only one <see cref="T:System.Net.IPAddress"/> is in the result set, all the aliases found will be returned.
  1371. </term>
  1372. </item><item>
  1373. <term>
  1374. If more than one <see cref="T:System.Net.IPAddress"/> is in the result set, aliases are returned only if at least one doesn't match the queried hostname.
  1375. </term>
  1376. </item>
  1377. </list>
  1378. </remarks>
  1379. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1380. <param name="address">The <see cref="T:System.Net.IPAddress"/> to query for.</param>
  1381. <returns>
  1382. An <see cref="T:System.Net.IPHostEntry"/> instance that contains address information about the host specified in <paramref name="address"/>.
  1383. In case the <paramref name="address"/> could not be resolved to a domain name, this method returns <c>null</c>,
  1384. unless <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true, then it might throw a <see cref="T:DnsClient.DnsResponseException"/>.
  1385. </returns>
  1386. <exception cref="T:System.ArgumentNullException">If <paramref name="address"/> is null.</exception>
  1387. <exception cref="T:DnsClient.DnsResponseException">In case <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to true and a DNS error occurs.</exception>
  1388. </member>
  1389. <member name="M:DnsClient.DnsQueryExtensions.GetHostName(DnsClient.IDnsQuery,System.Net.IPAddress)">
  1390. <summary>
  1391. The <c>GetHostName</c> method queries a DNS server to resolve the hostname of the <paramref name="address"/> via reverse lookup.
  1392. </summary>
  1393. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1394. <param name="address">The <see cref="T:System.Net.IPAddress"/> to resolve.</param>
  1395. <returns>
  1396. The hostname if the reverse lookup was successful or <c>null</c>, in case the host was not found.
  1397. If <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to <c>true</c>, this method will throw an <see cref="T:DnsClient.DnsResponseException"/> instead of returning <c>null</c>!
  1398. </returns>
  1399. <exception cref="T:System.ArgumentNullException">If <paramref name="address"/>is null.</exception>
  1400. <exception cref="T:DnsClient.DnsResponseException">If no host has been found and <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is <c>true</c>.</exception>
  1401. </member>
  1402. <member name="M:DnsClient.DnsQueryExtensions.GetHostNameAsync(DnsClient.IDnsQuery,System.Net.IPAddress)">
  1403. <summary>
  1404. The <c>GetHostNameAsync</c> method queries a DNS server to resolve the hostname of the <paramref name="address"/> via reverse lookup.
  1405. </summary>
  1406. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1407. <param name="address">The <see cref="T:System.Net.IPAddress"/> to resolve.</param>
  1408. <returns>
  1409. The hostname if the reverse lookup was successful or <c>null</c>, in case the host was not found.
  1410. If <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is set to <c>true</c>, this method will throw an <see cref="T:DnsClient.DnsResponseException"/> instead of returning <c>null</c>!
  1411. </returns>
  1412. <exception cref="T:System.ArgumentNullException">If <paramref name="address"/>is null.</exception>
  1413. <exception cref="T:DnsClient.DnsResponseException">If no host has been found and <see cref="P:DnsClient.ILookupClient.ThrowDnsErrors"/> is <c>true</c>.</exception>
  1414. </member>
  1415. <member name="M:DnsClient.DnsQueryExtensions.ResolveService(DnsClient.IDnsQuery,System.String,System.String,System.Net.Sockets.ProtocolType)">
  1416. <summary>
  1417. The <c>ResolveService</c> method does a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="protocol"/>}].{<paramref name="baseDomain"/>}</c>
  1418. and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
  1419. <para>
  1420. This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
  1421. and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
  1422. </para>
  1423. </summary>
  1424. <remarks>
  1425. The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
  1426. </remarks>
  1427. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1428. <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
  1429. <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
  1430. <param name="protocol">
  1431. The protocol of the service to query for.
  1432. Set it to <see cref="F:System.Net.Sockets.ProtocolType.Unknown"/> or <see cref="F:System.Net.Sockets.ProtocolType.Unspecified"/> to not pass any protocol.
  1433. </param>
  1434. <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
  1435. <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
  1436. <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
  1437. </member>
  1438. <member name="M:DnsClient.DnsQueryExtensions.ResolveServiceAsync(DnsClient.IDnsQuery,System.String,System.String,System.Net.Sockets.ProtocolType)">
  1439. <summary>
  1440. The <c>ResolveServiceAsync</c> method does a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="protocol"/>}].{<paramref name="baseDomain"/>}</c>
  1441. and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
  1442. <para>
  1443. This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
  1444. and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
  1445. </para>
  1446. </summary>
  1447. <remarks>
  1448. The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
  1449. </remarks>
  1450. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1451. <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
  1452. <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
  1453. <param name="protocol">
  1454. The protocol of the service to query for.
  1455. Set it to <see cref="F:System.Net.Sockets.ProtocolType.Unknown"/> or <see cref="F:System.Net.Sockets.ProtocolType.Unspecified"/> to not pass any protocol.
  1456. </param>
  1457. <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
  1458. <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
  1459. <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
  1460. </member>
  1461. <member name="M:DnsClient.DnsQueryExtensions.ResolveService(DnsClient.IDnsQuery,System.String,System.String,System.String)">
  1462. <summary>
  1463. The <c>ResolveService</c> method does a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="tag"/>}].{<paramref name="baseDomain"/>}</c>
  1464. and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
  1465. <para>
  1466. This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
  1467. and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
  1468. </para>
  1469. </summary>
  1470. <remarks>
  1471. The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
  1472. </remarks>
  1473. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1474. <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
  1475. <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
  1476. <param name="tag">An optional tag. Must not have any <c>_</c> prefix.</param>
  1477. <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
  1478. <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
  1479. <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
  1480. </member>
  1481. <member name="M:DnsClient.DnsQueryExtensions.ResolveServiceAsync(DnsClient.IDnsQuery,System.String,System.String,System.String)">
  1482. <summary>
  1483. The <c>ResolveServiceAsync</c> method does a <see cref="F:DnsClient.QueryType.SRV"/> lookup for <c>_{<paramref name="serviceName"/>}[._{<paramref name="tag"/>}].{<paramref name="baseDomain"/>}</c>
  1484. and aggregates the result (hostname, port and list of <see cref="T:System.Net.IPAddress"/>s) to a <see cref="T:DnsClient.ServiceHostEntry"/>.
  1485. <para>
  1486. This method expects matching A or AAAA records to populate the <see cref="P:System.Net.IPHostEntry.AddressList"/>,
  1487. and/or a <see cref="F:DnsClient.Protocol.ResourceRecordType.CNAME"/> record to populate the <see cref="P:System.Net.IPHostEntry.HostName"/> property of the result.
  1488. </para>
  1489. </summary>
  1490. <remarks>
  1491. The returned list of <see cref="T:System.Net.IPAddress"/>s and/or the hostname can be empty if no matching additional records are found.
  1492. </remarks>
  1493. <param name="query">The <see cref="T:DnsClient.IDnsQuery"/> instance.</param>
  1494. <param name="baseDomain">The base domain, which will be appended to the end of the query string.</param>
  1495. <param name="serviceName">The name of the service to look for. Must not have any <c>_</c> prefix.</param>
  1496. <param name="tag">An optional tag. Must not have any <c>_</c> prefix.</param>
  1497. <returns>A collection of <see cref="T:DnsClient.ServiceHostEntry"/>s.</returns>
  1498. <exception cref="T:System.ArgumentNullException">If <paramref name="baseDomain"/> or <paramref name="serviceName"/> are null.</exception>
  1499. <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
  1500. </member>
  1501. <member name="T:DnsClient.ServiceHostEntry">
  1502. <summary>
  1503. Extends <see cref="T:System.Net.IPHostEntry"/> by the <see cref="P:DnsClient.ServiceHostEntry.Port"/> property.
  1504. </summary>
  1505. <seealso cref="T:System.Net.IPHostEntry" />
  1506. </member>
  1507. <member name="P:DnsClient.ServiceHostEntry.Port">
  1508. <summary>
  1509. Gets or sets the port.
  1510. </summary>
  1511. <value>
  1512. The port.
  1513. </value>
  1514. </member>
  1515. <member name="T:DnsClient.DnsQueryResponse">
  1516. <summary>
  1517. The response returned by any query performed by <see cref="T:DnsClient.IDnsQuery"/> with all answer sections, header and message information.
  1518. </summary>
  1519. <seealso cref="T:DnsClient.IDnsQuery"/>
  1520. <seealso cref="T:DnsClient.ILookupClient"/>
  1521. </member>
  1522. <member name="P:DnsClient.DnsQueryResponse.NameServer">
  1523. <inheritdoc />
  1524. </member>
  1525. <member name="P:DnsClient.DnsQueryResponse.Additionals">
  1526. <inheritdoc />
  1527. </member>
  1528. <member name="P:DnsClient.DnsQueryResponse.AllRecords">
  1529. <inheritdoc />
  1530. </member>
  1531. <member name="P:DnsClient.DnsQueryResponse.AuditTrail">
  1532. <inheritdoc />
  1533. </member>
  1534. <member name="P:DnsClient.DnsQueryResponse.Answers">
  1535. <inheritdoc />
  1536. </member>
  1537. <member name="P:DnsClient.DnsQueryResponse.Authorities">
  1538. <inheritdoc />
  1539. </member>
  1540. <member name="P:DnsClient.DnsQueryResponse.ErrorMessage">
  1541. <inheritdoc />
  1542. </member>
  1543. <member name="P:DnsClient.DnsQueryResponse.HasError">
  1544. <inheritdoc />
  1545. </member>
  1546. <member name="P:DnsClient.DnsQueryResponse.Header">
  1547. <inheritdoc />
  1548. </member>
  1549. <member name="P:DnsClient.DnsQueryResponse.Questions">
  1550. <inheritdoc />
  1551. </member>
  1552. <member name="P:DnsClient.DnsQueryResponse.MessageSize">
  1553. <inheritdoc />
  1554. </member>
  1555. <member name="M:DnsClient.DnsQueryResponse.Equals(System.Object)">
  1556. <inheritdoc />
  1557. </member>
  1558. <member name="M:DnsClient.DnsQueryResponse.GetHashCode">
  1559. <inheritdoc />
  1560. </member>
  1561. <member name="T:DnsClient.DnsQuestion">
  1562. <summary>
  1563. The <see cref="T:DnsClient.DnsQuestion"/> class transports information of the lookup query performed by <see cref="T:DnsClient.IDnsQuery"/>.
  1564. <para>
  1565. A list of questions is returned by <see cref="T:DnsClient.IDnsQueryResponse"/> (although, the list will always contain only one <see cref="T:DnsClient.DnsQuestion"/>).
  1566. </para>
  1567. </summary>
  1568. </member>
  1569. <member name="P:DnsClient.DnsQuestion.QueryName">
  1570. <summary>
  1571. Gets the domain name the lookup was runnig for.
  1572. </summary>
  1573. <value>
  1574. The name of the query.
  1575. </value>
  1576. </member>
  1577. <member name="P:DnsClient.DnsQuestion.QuestionClass">
  1578. <summary>
  1579. Gets the question class.
  1580. </summary>
  1581. <value>
  1582. The question class.
  1583. </value>
  1584. </member>
  1585. <member name="P:DnsClient.DnsQuestion.QuestionType">
  1586. <summary>
  1587. Gets the type of the question.
  1588. </summary>
  1589. <value>
  1590. The type of the question.
  1591. </value>
  1592. </member>
  1593. <member name="M:DnsClient.DnsQuestion.#ctor(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
  1594. <summary>
  1595. Initializes a new instance of the <see cref="T:DnsClient.DnsQuestion"/> class.
  1596. </summary>
  1597. <param name="query">The query.</param>
  1598. <param name="questionType">Type of the question.</param>
  1599. <param name="questionClass">The question class.</param>
  1600. <exception cref="T:System.ArgumentNullException">If <paramref name="query"/> is null.</exception>
  1601. </member>
  1602. <member name="M:DnsClient.DnsQuestion.#ctor(DnsClient.DnsString,DnsClient.QueryType,DnsClient.QueryClass)">
  1603. <summary>
  1604. Initializes a new instance of the <see cref="T:DnsClient.DnsQuestion"/> class.
  1605. </summary>
  1606. <param name="query">The query.</param>
  1607. <param name="questionType">Type of the question.</param>
  1608. <param name="questionClass">The question class.</param>
  1609. <exception cref="T:System.ArgumentNullException">If <paramref name="query"/> is null.</exception>
  1610. </member>
  1611. <member name="M:DnsClient.DnsQuestion.ToString">
  1612. <inheritdoc />
  1613. </member>
  1614. <member name="M:DnsClient.DnsQuestion.ToString(System.Int32)">
  1615. <summary>
  1616. Returns the information of this instance in a friendly format with an optional <paramref name="offset"/>.
  1617. </summary>
  1618. <param name="offset">The optional offset which can be used for pretty printing.</param>
  1619. <returns>The string representation of this instance.</returns>
  1620. </member>
  1621. <member name="T:DnsClient.DnsRequestMessage">
  1622. <summary>
  1623. Represents a simple request message which can be send through <see cref="T:DnsClient.DnsMessageHandler"/>.
  1624. </summary>
  1625. </member>
  1626. <member name="T:DnsClient.DnsResponseCode">
  1627. <summary>
  1628. Response codes of the <see cref="T:DnsClient.IDnsQueryResponse"/>.
  1629. </summary>
  1630. <seealso href="https://tools.ietf.org/html/rfc6895#section-2.3">RFC 6895</seealso>
  1631. </member>
  1632. <member name="F:DnsClient.DnsResponseCode.NoError">
  1633. <summary>
  1634. No error condition
  1635. </summary>
  1636. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1637. </member>
  1638. <member name="F:DnsClient.DnsResponseCode.FormatError">
  1639. <summary>
  1640. Format error. The name server was unable to interpret the query.
  1641. </summary>
  1642. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1643. </member>
  1644. <member name="F:DnsClient.DnsResponseCode.ServerFailure">
  1645. <summary>
  1646. Server failure. The name server was unable to process this query due to a problem with the name server.
  1647. </summary>
  1648. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1649. </member>
  1650. <member name="F:DnsClient.DnsResponseCode.NotExistentDomain">
  1651. <summary>
  1652. Name Error. Meaningful only for responses from an authoritative name server,
  1653. this code signifies that the domain name referenced in the query does not exist.
  1654. </summary>
  1655. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1656. </member>
  1657. <member name="F:DnsClient.DnsResponseCode.NotImplemented">
  1658. <summary>
  1659. Not Implemented. The name server does not support the requested kind of query.
  1660. </summary>
  1661. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1662. </member>
  1663. <member name="F:DnsClient.DnsResponseCode.Refused">
  1664. <summary>
  1665. Refused. The name server refuses to perform the specified operation for policy reasons.
  1666. For example, a name server may not wish to provide the information to the particular requester,
  1667. or a name server may not wish to perform a particular operation (e.g., zone transfer) for particular data.
  1668. </summary>
  1669. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  1670. </member>
  1671. <member name="F:DnsClient.DnsResponseCode.ExistingDomain">
  1672. <summary>
  1673. Name Exists when it should not.
  1674. </summary>
  1675. <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
  1676. </member>
  1677. <member name="F:DnsClient.DnsResponseCode.ExistingResourceRecordSet">
  1678. <summary>
  1679. Resource record set exists when it should not.
  1680. </summary>
  1681. <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
  1682. </member>
  1683. <member name="F:DnsClient.DnsResponseCode.MissingResourceRecordSet">
  1684. <summary>
  1685. Resource record set that should exist but does not.
  1686. </summary>
  1687. <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
  1688. </member>
  1689. <member name="F:DnsClient.DnsResponseCode.NotAuthorized">
  1690. <summary>
  1691. Server Not Authoritative for zone / Not Authorized.
  1692. </summary>
  1693. <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
  1694. <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
  1695. </member>
  1696. <member name="F:DnsClient.DnsResponseCode.NotZone">
  1697. <summary>
  1698. Name not contained in zone.
  1699. </summary>
  1700. <seealso href="https://tools.ietf.org/html/rfc2136">RFC 2136</seealso>
  1701. </member>
  1702. <member name="F:DnsClient.DnsResponseCode.BadVersionOrBadSignature">
  1703. <summary>
  1704. Bad OPT Version or TSIG Signature Failure.
  1705. </summary>
  1706. <seealso href="https://tools.ietf.org/html/rfc2671">RFC 2671</seealso>
  1707. <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
  1708. </member>
  1709. <member name="F:DnsClient.DnsResponseCode.BadKey">
  1710. <summary>
  1711. Key not recognized.
  1712. </summary>
  1713. <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
  1714. </member>
  1715. <member name="F:DnsClient.DnsResponseCode.BadTime">
  1716. <summary>
  1717. Signature out of time window.
  1718. </summary>
  1719. <seealso href="https://tools.ietf.org/html/rfc2845">RFC 2845</seealso>
  1720. </member>
  1721. <member name="F:DnsClient.DnsResponseCode.BadMode">
  1722. <summary>
  1723. Bad TKEY Mode.
  1724. </summary>
  1725. <seealso href="https://tools.ietf.org/html/rfc2930">RFC 2930</seealso>
  1726. </member>
  1727. <member name="F:DnsClient.DnsResponseCode.BadName">
  1728. <summary>
  1729. Duplicate key name.
  1730. </summary>
  1731. <seealso href="https://tools.ietf.org/html/rfc2930">RFC 2930</seealso>
  1732. </member>
  1733. <member name="F:DnsClient.DnsResponseCode.BadAlgorithm">
  1734. <summary>
  1735. Algorithm not supported.
  1736. </summary>
  1737. <seealso href="https://tools.ietf.org/html/rfc2930">RFC 2930</seealso>
  1738. </member>
  1739. <member name="F:DnsClient.DnsResponseCode.BadTruncation">
  1740. <summary>
  1741. Bad Truncation.
  1742. </summary>
  1743. <seealso href="https://tools.ietf.org/html/rfc4635">RFC 4635</seealso>
  1744. </member>
  1745. <member name="F:DnsClient.DnsResponseCode.BadCookie">
  1746. <summary>
  1747. Bad/missing Server Cookie
  1748. </summary>
  1749. <seealso href="https://tools.ietf.org/html/rfc7873">RFC 7873</seealso>
  1750. </member>
  1751. <member name="F:DnsClient.DnsResponseCode.Unassigned">
  1752. <summary>
  1753. Unknown error.
  1754. </summary>
  1755. </member>
  1756. <member name="F:DnsClient.DnsResponseCode.ConnectionTimeout">
  1757. <summary>
  1758. Indicates a timeout error. Connection to the remote server couldn't be established.
  1759. </summary>
  1760. </member>
  1761. <member name="T:DnsClient.DnsResponseException">
  1762. <summary>
  1763. A DnsClient specific exception transporting additional information about the query causing this exception.
  1764. </summary>
  1765. <seealso cref="T:System.Exception" />
  1766. </member>
  1767. <member name="P:DnsClient.DnsResponseException.Code">
  1768. <summary>
  1769. Gets the response code.
  1770. </summary>
  1771. <value>
  1772. The response code.
  1773. </value>
  1774. </member>
  1775. <member name="P:DnsClient.DnsResponseException.AuditTrail">
  1776. <summary>
  1777. Gets the audit trail if <see cref="P:DnsClient.ILookupClient.EnableAuditTrail"/>. as set to <c>true</c>, <c>null</c> otherwise.
  1778. </summary>
  1779. <value>
  1780. The audit trail.
  1781. </value>
  1782. </member>
  1783. <member name="P:DnsClient.DnsResponseException.DnsError">
  1784. <summary>
  1785. Gets a human readable error message.
  1786. </summary>
  1787. <value>
  1788. The error message.
  1789. </value>
  1790. </member>
  1791. <member name="M:DnsClient.DnsResponseException.#ctor">
  1792. <summary>
  1793. Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class
  1794. with <see cref="P:DnsClient.DnsResponseException.Code"/> set to <see cref="F:DnsClient.DnsResponseCode.Unassigned"/>.
  1795. </summary>
  1796. </member>
  1797. <member name="M:DnsClient.DnsResponseException.#ctor(System.String)">
  1798. <summary>
  1799. Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class
  1800. with <see cref="P:DnsClient.DnsResponseException.Code"/> set to <see cref="F:DnsClient.DnsResponseCode.Unassigned"/>
  1801. and a custom <paramref name="message"/>.
  1802. </summary>
  1803. </member>
  1804. <member name="M:DnsClient.DnsResponseException.#ctor(DnsClient.DnsResponseCode)">
  1805. <summary>
  1806. Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class
  1807. with the standard error text for the given <paramref name="code"/>.
  1808. </summary>
  1809. </member>
  1810. <member name="M:DnsClient.DnsResponseException.#ctor(System.String,System.Exception)">
  1811. <summary>
  1812. Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class
  1813. with <see cref="P:DnsClient.DnsResponseException.Code"/> set to <see cref="F:DnsClient.DnsResponseCode.Unassigned"/>
  1814. and a custom <paramref name="message"/> and inner <see cref="T:System.Exception"/>.
  1815. </summary>
  1816. </member>
  1817. <member name="M:DnsClient.DnsResponseException.#ctor(DnsClient.DnsResponseCode,System.String)">
  1818. <summary>
  1819. Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class
  1820. with a custom <paramref name="message"/> and the given <paramref name="code"/>.
  1821. </summary>
  1822. </member>
  1823. <member name="M:DnsClient.DnsResponseException.#ctor(DnsClient.DnsResponseCode,System.String,System.Exception)">
  1824. <summary>
  1825. Initializes a new instance of the <see cref="T:DnsClient.DnsResponseException"/> class
  1826. with a custom <paramref name="message"/> and the given <paramref name="code"/>.
  1827. </summary>
  1828. </member>
  1829. <member name="T:DnsClient.DnsResponseHeader">
  1830. <summary>
  1831. The header section of a <see cref="T:DnsClient.IDnsQueryResponse"/>.
  1832. </summary>
  1833. </member>
  1834. <member name="P:DnsClient.DnsResponseHeader.AdditionalCount">
  1835. <summary>
  1836. Gets the number of additional records in the <see cref="T:DnsClient.IDnsQueryResponse"/>.
  1837. </summary>
  1838. <value>
  1839. The number of additional records.
  1840. </value>
  1841. </member>
  1842. <member name="P:DnsClient.DnsResponseHeader.AnswerCount">
  1843. <summary>
  1844. Gets the number of answer records in the <see cref="T:DnsClient.IDnsQueryResponse"/>.
  1845. </summary>
  1846. <value>
  1847. The number of answer records.
  1848. </value>
  1849. </member>
  1850. <member name="P:DnsClient.DnsResponseHeader.FutureUse">
  1851. <summary>
  1852. Gets a value indicating whether the future use flag is set.
  1853. </summary>
  1854. <value>
  1855. The future use flag.
  1856. </value>
  1857. </member>
  1858. <member name="P:DnsClient.DnsResponseHeader.HasAuthorityAnswer">
  1859. <summary>
  1860. Gets a value indicating whether this instance has authority answers.
  1861. </summary>
  1862. <value>
  1863. <c>true</c> if this instance has authority answers; otherwise, <c>false</c>.
  1864. </value>
  1865. </member>
  1866. <member name="P:DnsClient.DnsResponseHeader.Id">
  1867. <summary>
  1868. Gets the identifier.
  1869. </summary>
  1870. <value>
  1871. The identifier.
  1872. </value>
  1873. </member>
  1874. <member name="P:DnsClient.DnsResponseHeader.IsAuthenticData">
  1875. <summary>
  1876. Gets a value indicating whether the result is authentic data.
  1877. </summary>
  1878. <value>
  1879. <c>true</c> if the result is authentic; otherwise, <c>false</c>.
  1880. </value>
  1881. </member>
  1882. <member name="P:DnsClient.DnsResponseHeader.IsCheckingDisabled">
  1883. <summary>
  1884. Gets a value indicating whether checking is disabled.
  1885. </summary>
  1886. <value>
  1887. <c>true</c> if checking is disabled; otherwise, <c>false</c>.
  1888. </value>
  1889. </member>
  1890. <member name="P:DnsClient.DnsResponseHeader.HasQuery">
  1891. <summary>
  1892. Gets a value indicating whether this instance has a query.
  1893. </summary>
  1894. <value>
  1895. <c>true</c> if this instance has a query; otherwise, <c>false</c>.
  1896. </value>
  1897. </member>
  1898. <member name="P:DnsClient.DnsResponseHeader.NameServerCount">
  1899. <summary>
  1900. Gets the number of name servers.
  1901. </summary>
  1902. <value>
  1903. The number of name servers.
  1904. </value>
  1905. </member>
  1906. <member name="P:DnsClient.DnsResponseHeader.OPCode">
  1907. <summary>
  1908. Gets the kind of query defined by <see cref="T:DnsClient.DnsOpCode"/>.
  1909. </summary>
  1910. <value>
  1911. The query kind.
  1912. </value>
  1913. </member>
  1914. <member name="P:DnsClient.DnsResponseHeader.QuestionCount">
  1915. <summary>
  1916. Gets the number of questions of the <see cref="T:DnsClient.IDnsQueryResponse"/>.
  1917. </summary>
  1918. <value>
  1919. The number of questions.
  1920. </value>
  1921. </member>
  1922. <member name="P:DnsClient.DnsResponseHeader.RecursionAvailable">
  1923. <summary>
  1924. Gets a value indicating whether recursion is available on the DNS server.
  1925. </summary>
  1926. <value>
  1927. <c>true</c> if recursion is available; otherwise, <c>false</c>.
  1928. </value>
  1929. </member>
  1930. <member name="P:DnsClient.DnsResponseHeader.ResponseCode">
  1931. <summary>
  1932. Gets the response code.
  1933. </summary>
  1934. <value>
  1935. The response code.
  1936. </value>
  1937. </member>
  1938. <member name="P:DnsClient.DnsResponseHeader.ResultTruncated">
  1939. <summary>
  1940. Gets a value indicating whether the result was truncated.
  1941. </summary>
  1942. <value>
  1943. <c>true</c> if the result was truncated; otherwise, <c>false</c>.
  1944. </value>
  1945. </member>
  1946. <member name="P:DnsClient.DnsResponseHeader.RecursionDesired">
  1947. <summary>
  1948. Gets a value indicating whether recursion desired flag was set by the request.
  1949. </summary>
  1950. <value>
  1951. <c>true</c> if the recursion desired flag was set; otherwise, <c>false</c>.
  1952. </value>
  1953. </member>
  1954. <member name="M:DnsClient.DnsResponseHeader.#ctor(System.Int32,System.UInt16,System.Int32,System.Int32,System.Int32,System.Int32)">
  1955. <summary>
  1956. Initializes a new instance of the <see cref="T:DnsClient.DnsResponseHeader"/> class.
  1957. </summary>
  1958. <param name="id">The identifier.</param>
  1959. <param name="flags">The flags.</param>
  1960. <param name="questionCount">The question count.</param>
  1961. <param name="answerCount">The answer count.</param>
  1962. <param name="additionalCount">The additional count.</param>
  1963. <param name="serverCount">The server count.</param>
  1964. </member>
  1965. <member name="M:DnsClient.DnsResponseHeader.ToString">
  1966. <summary>
  1967. Returns a <see cref="T:System.String" /> that represents this instance.
  1968. </summary>
  1969. <returns>
  1970. A <see cref="T:System.String" /> that represents this instance.
  1971. </returns>
  1972. </member>
  1973. <member name="M:DnsClient.DnsResponseMessage.AsQueryResponse(DnsClient.NameServer)">
  1974. <summary>
  1975. Gets the readonly representation of this message which can be returned.
  1976. </summary>
  1977. </member>
  1978. <member name="T:DnsClient.DnsString">
  1979. <summary>
  1980. The <see cref="T:DnsClient.DnsString"/> type is used to normalize and validate domain names and labels.
  1981. </summary>
  1982. </member>
  1983. <member name="F:DnsClient.DnsString.ACEPrefix">
  1984. <summary>
  1985. The ACE prefix indicates that the domain name label contains not normally supported characters and that the label has been endoded.
  1986. </summary>
  1987. </member>
  1988. <member name="F:DnsClient.DnsString.LabelMaxLength">
  1989. <summary>
  1990. The maximum lenght in bytes for one label.
  1991. </summary>
  1992. </member>
  1993. <member name="F:DnsClient.DnsString.QueryMaxLength">
  1994. <summary>
  1995. The maximum supported total length in bytes for a domain nanme. The calculation of the actual
  1996. bytes this <see cref="T:DnsClient.DnsString"/> consumes includes all bytes used for to encode it as octet string.
  1997. </summary>
  1998. </member>
  1999. <member name="F:DnsClient.DnsString.RootLabel">
  2000. <summary>
  2001. The root label ".".
  2002. </summary>
  2003. </member>
  2004. <member name="P:DnsClient.DnsString.Original">
  2005. <summary>
  2006. Gets the orginal value.
  2007. </summary>
  2008. </member>
  2009. <member name="P:DnsClient.DnsString.Value">
  2010. <summary>
  2011. Gets the validated and eventually modified value.
  2012. </summary>
  2013. </member>
  2014. <member name="M:DnsClient.DnsString.op_Implicit(DnsClient.DnsString)~System.String">
  2015. <summary>
  2016. Performs an implicit conversion from <see cref="T:DnsClient.DnsString"/> to <see cref="T:System.String"/>.
  2017. </summary>
  2018. <param name="name">The name.</param>
  2019. <returns>
  2020. The result of the conversion.
  2021. </returns>
  2022. </member>
  2023. <member name="M:DnsClient.DnsString.ToString">
  2024. <inheritdoc />
  2025. </member>
  2026. <member name="M:DnsClient.DnsString.GetHashCode">
  2027. <inheritdoc />
  2028. </member>
  2029. <member name="M:DnsClient.DnsString.Equals(System.Object)">
  2030. <inheritdoc />
  2031. </member>
  2032. <member name="M:DnsClient.DnsString.Parse(System.String)">
  2033. <summary>
  2034. Parses the given <paramref name="query"/> and validates all labels.
  2035. </summary>
  2036. <remarks>
  2037. An empty string will be interpreted as root label.
  2038. </remarks>
  2039. <param name="query">A domain name.</param>
  2040. <returns>The <see cref="T:DnsClient.DnsString"/> representing the given <paramref name="query"/>.</returns>
  2041. <exception cref="T:System.ArgumentNullException">If <paramref name="query"/> is null.</exception>
  2042. </member>
  2043. <member name="M:DnsClient.DnsString.FromResponseQueryString(System.String)">
  2044. <summary>
  2045. Transforms names with the <see cref="F:DnsClient.DnsString.ACEPrefix"/> to the unicode variant and adds a trailing '.' at the end if not present.
  2046. The original value will be kept in this instance in case it is needed.
  2047. </summary>
  2048. <remarks>
  2049. The method does not parse the domain name unless it contains a <see cref="F:DnsClient.DnsString.ACEPrefix"/>.
  2050. </remarks>
  2051. <param name="query">The value to check.</param>
  2052. <returns>The <see cref="T:DnsClient.DnsString"/> representation.</returns>
  2053. </member>
  2054. <member name="T:DnsClient.IDnsQuery">
  2055. <summary>
  2056. Generic contract to query DNS endpoints. Implemented by <see cref="T:DnsClient.LookupClient"/>.
  2057. </summary>
  2058. </member>
  2059. <member name="M:DnsClient.IDnsQuery.Query(System.String,DnsClient.QueryType)">
  2060. <summary>
  2061. Performs a DNS lookup for <paramref name="query" /> and <paramref name="queryType" />.
  2062. </summary>
  2063. <param name="query">The domain name query.</param>
  2064. <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
  2065. <returns>
  2066. The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
  2067. </returns>
  2068. </member>
  2069. <member name="M:DnsClient.IDnsQuery.Query(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
  2070. <summary>
  2071. Performs a DNS lookup for <paramref name="query" />, <paramref name="queryType" /> and <paramref name="queryClass"/>.
  2072. </summary>
  2073. <param name="query">The domain name query.</param>
  2074. <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
  2075. <param name="queryClass">The <see cref="T:DnsClient.QueryClass"/>.</param>
  2076. <returns>
  2077. The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
  2078. </returns>
  2079. </member>
  2080. <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType)">
  2081. <summary>
  2082. Performs a DNS lookup for <paramref name="query" /> and <paramref name="queryType" />.
  2083. </summary>
  2084. <param name="query">The domain name query.</param>
  2085. <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
  2086. <returns>
  2087. The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
  2088. </returns>
  2089. </member>
  2090. <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
  2091. <summary>
  2092. Performs a DNS lookup for <paramref name="query" />, <paramref name="queryType" /> and <paramref name="queryClass"/>.
  2093. </summary>
  2094. <param name="query">The domain name query.</param>
  2095. <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
  2096. <param name="queryClass">The <see cref="T:DnsClient.QueryClass"/>.</param>
  2097. <returns>
  2098. The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
  2099. </returns>
  2100. </member>
  2101. <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType,System.Threading.CancellationToken)">
  2102. <summary>
  2103. Performs a DNS lookup for <paramref name="query" /> and <paramref name="queryType" />.
  2104. </summary>
  2105. <param name="query">The domain name query.</param>
  2106. <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
  2107. <param name="cancellationToken">The cancellation token.</param>
  2108. <returns>
  2109. The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
  2110. </returns>
  2111. </member>
  2112. <member name="M:DnsClient.IDnsQuery.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass,System.Threading.CancellationToken)">
  2113. <summary>
  2114. Performs a DNS lookup for <paramref name="query" />, <paramref name="queryType" /> and <paramref name="queryClass" />.
  2115. </summary>
  2116. <param name="query">The domain name query.</param>
  2117. <param name="queryType">The <see cref="T:DnsClient.QueryType" />.</param>
  2118. <param name="queryClass">The <see cref="T:DnsClient.QueryClass" />.</param>
  2119. <param name="cancellationToken">The cancellation token.</param>
  2120. <returns>
  2121. The <see cref="T:DnsClient.IDnsQueryResponse" /> which contains the response headers and lists of resource records.
  2122. </returns>
  2123. </member>
  2124. <member name="M:DnsClient.IDnsQuery.QueryReverse(System.Net.IPAddress)">
  2125. <summary>
  2126. Does a reverse lookup of the <paramref name="ipAddress"/>.
  2127. </summary>
  2128. <param name="ipAddress">The <see cref="T:System.Net.IPAddress"/>.</param>
  2129. <returns>
  2130. The <see cref="T:DnsClient.IDnsQueryResponse" /> which should contain the <see cref="T:DnsClient.Protocol.PtrRecord"/>.
  2131. </returns>
  2132. </member>
  2133. <member name="M:DnsClient.IDnsQuery.QueryReverseAsync(System.Net.IPAddress)">
  2134. <summary>
  2135. Does a reverse lookup of the <paramref name="ipAddress"/>.
  2136. </summary>
  2137. <param name="ipAddress">The <see cref="T:System.Net.IPAddress"/>.</param>
  2138. <returns>
  2139. The <see cref="T:DnsClient.IDnsQueryResponse" /> which should contain the <see cref="T:DnsClient.Protocol.PtrRecord"/>.
  2140. </returns>
  2141. </member>
  2142. <member name="M:DnsClient.IDnsQuery.QueryReverseAsync(System.Net.IPAddress,System.Threading.CancellationToken)">
  2143. <summary>
  2144. Does a reverse lookup of the <paramref name="ipAddress" />.
  2145. </summary>
  2146. <param name="ipAddress">The <see cref="T:System.Net.IPAddress" />.</param>
  2147. <param name="cancellationToken">The cancellation token.</param>
  2148. <returns>
  2149. The <see cref="T:DnsClient.IDnsQueryResponse" /> which should contain the <see cref="T:DnsClient.Protocol.PtrRecord" />.
  2150. </returns>
  2151. </member>
  2152. <member name="T:DnsClient.IDnsQueryResponse">
  2153. <summary>
  2154. Contract defining the result of a query performed by <see cref="T:DnsClient.IDnsQuery"/>.
  2155. </summary>
  2156. <seealso cref="T:DnsClient.IDnsQuery"/>
  2157. <seealso cref="T:DnsClient.ILookupClient"/>
  2158. </member>
  2159. <member name="P:DnsClient.IDnsQueryResponse.Questions">
  2160. <summary>
  2161. Gets the list of questions.
  2162. </summary>
  2163. </member>
  2164. <member name="P:DnsClient.IDnsQueryResponse.Additionals">
  2165. <summary>
  2166. Gets a list of additional records.
  2167. </summary>
  2168. </member>
  2169. <member name="P:DnsClient.IDnsQueryResponse.AllRecords">
  2170. <summary>
  2171. Gets a list of all answers, addtional and authority records.
  2172. </summary>
  2173. </member>
  2174. <member name="P:DnsClient.IDnsQueryResponse.Answers">
  2175. <summary>
  2176. Gets a list of answer records.
  2177. </summary>
  2178. </member>
  2179. <member name="P:DnsClient.IDnsQueryResponse.Authorities">
  2180. <summary>
  2181. Gets a list of authority records.
  2182. </summary>
  2183. </member>
  2184. <member name="P:DnsClient.IDnsQueryResponse.AuditTrail">
  2185. <summary>
  2186. Gets the audit trail if <see cref="P:DnsClient.ILookupClient.EnableAuditTrail"/>. as set to <c>true</c>, <c>null</c> otherwise.
  2187. </summary>
  2188. <value>
  2189. The audit trail.
  2190. </value>
  2191. </member>
  2192. <member name="P:DnsClient.IDnsQueryResponse.ErrorMessage">
  2193. <summary>
  2194. Returns a string value representing the error response code in case an error occured,
  2195. otherwise '<see cref="F:DnsClient.DnsResponseCode.NoError"/>'.
  2196. </summary>
  2197. </member>
  2198. <member name="P:DnsClient.IDnsQueryResponse.HasError">
  2199. <summary>
  2200. A flag indicating if the header contains a response codde other than <see cref="F:DnsClient.DnsResponseCode.NoError"/>.
  2201. </summary>
  2202. </member>
  2203. <member name="P:DnsClient.IDnsQueryResponse.Header">
  2204. <summary>
  2205. Gets the header of the response.
  2206. </summary>
  2207. </member>
  2208. <member name="P:DnsClient.IDnsQueryResponse.MessageSize">
  2209. <summary>
  2210. Gets the size of the message.
  2211. </summary>
  2212. <value>
  2213. The size of the message.
  2214. </value>
  2215. </member>
  2216. <member name="P:DnsClient.IDnsQueryResponse.NameServer">
  2217. <summary>
  2218. Gets the name server which responded with this result.
  2219. </summary>
  2220. <value>
  2221. The name server.
  2222. </value>
  2223. </member>
  2224. <member name="T:DnsClient.ILookupClient">
  2225. <summary>
  2226. The contract for the LookupClient including all the options.
  2227. <para>
  2228. The interfaces for the query methods and the lookup client properties are separated so that one can
  2229. inject or expose only the <see cref="T:DnsClient.IDnsQuery"/> without exposing the configuration options.
  2230. </para>
  2231. </summary>
  2232. </member>
  2233. <member name="P:DnsClient.ILookupClient.EnableAuditTrail">
  2234. <summary>
  2235. If enabled, each <see cref="T:DnsClient.IDnsQueryResponse"/> will contain a full documentation of the response in zone file format.
  2236. </summary>
  2237. <seealso cref="P:DnsClient.IDnsQueryResponse.AuditTrail"/>
  2238. </member>
  2239. <member name="P:DnsClient.ILookupClient.UseCache">
  2240. <summary>
  2241. Gets or sets a flag indicating if the <see cref="T:DnsClient.LookupClient"/> should use response caching or not.
  2242. The cache duration is calculated by the resource record of the response. Usually, the lowest TTL is used.
  2243. </summary>
  2244. <remarks>
  2245. In case the DNS Server returns records with a TTL of zero. The response cannot be cached.
  2246. Setting <see cref="P:DnsClient.ILookupClient.MinimumCacheTimeout"/> can overwrite this behavior and cache those responses anyways for at least the given duration.
  2247. </remarks>
  2248. </member>
  2249. <member name="P:DnsClient.ILookupClient.MinimumCacheTimeout">
  2250. <summary>
  2251. Gets or sets a <see cref="T:System.TimeSpan"/> which can override the TTL of a resource record in case the
  2252. TTL of the record is lower than this minimum value.
  2253. <para>
  2254. This is useful in cases where the server retruns records with zero TTL.
  2255. </para>
  2256. This setting gets igonred in case <see cref="P:DnsClient.ILookupClient.UseCache"/> is set to <c>false</c>.
  2257. </summary>
  2258. </member>
  2259. <member name="P:DnsClient.ILookupClient.NameServers">
  2260. <summary>
  2261. Gets the list of configured name servers.
  2262. </summary>
  2263. </member>
  2264. <member name="P:DnsClient.ILookupClient.Recursion">
  2265. <summary>
  2266. Gets or sets a flag indicating if DNS queries should instruct the DNS server to do recursive lookups, or not.
  2267. </summary>
  2268. <value>The flag indicating if recursion should be used or not.</value>
  2269. </member>
  2270. <member name="P:DnsClient.ILookupClient.Retries">
  2271. <summary>
  2272. Gets or sets number of tries to connect to one name server before trying the next one or throwing an exception.
  2273. </summary>
  2274. <summary>
  2275. Gets or sets the number of retries the client can perform in connection or timeout errors during query operations.
  2276. <para>
  2277. If set to <c>0</c>, no retries will be performed.
  2278. </para>
  2279. </summary>
  2280. <value>The number of alloed retries before exceptions will bubble up.</value>
  2281. </member>
  2282. <member name="P:DnsClient.ILookupClient.ThrowDnsErrors">
  2283. <summary>
  2284. Gets or sets a flag indicating if the <see cref="T:DnsClient.LookupClient"/> should throw an <see cref="T:DnsClient.DnsResponseException"/> if
  2285. a query result has a <see cref="T:DnsClient.DnsResponseCode"/> other than <see cref="F:DnsClient.DnsResponseCode.NoError"/>.
  2286. <para>
  2287. If set to <c>false</c>, the <see cref="T:DnsClient.IDnsQueryResponse"/>'s <see cref="P:DnsClient.IDnsQueryResponse.HasError"/> flag can be expected.
  2288. The <see cref="P:DnsClient.IDnsQueryResponse.ErrorMessage"/> will contain more information and the <see cref="P:DnsClient.IDnsQueryResponse.Header"/> transports the
  2289. original <see cref="T:DnsClient.DnsResponseCode"/>.
  2290. </para>
  2291. <para>
  2292. If set to <c>true</c>, any query method of <see cref="T:DnsClient.IDnsQuery"/> will throw an <see cref="T:DnsClient.DnsResponseException"/> if
  2293. the response header indicates an error. The actual code and message can be accessed via <see cref="P:DnsClient.DnsResponseException.Code"/> and <see cref="P:DnsClient.DnsResponseException.DnsError"/> of the <see cref="T:DnsClient.DnsResponseException"/>.
  2294. </para>
  2295. </summary>
  2296. <seealso cref="T:DnsClient.DnsResponseCode"/>
  2297. </member>
  2298. <member name="P:DnsClient.ILookupClient.Timeout">
  2299. <summary>
  2300. Gets or sets the timeout in milliseconds. <see cref="P:DnsClient.ILookupClient.Timeout"/> is used for limiting the connection and request time for one operation.
  2301. Timeout must be greater than zero and less than <see cref="F:System.Int32.MaxValue"/>.
  2302. If set to <see cref="F:System.Threading.Timeout.InfiniteTimeSpan"/> (or -1), no timeout will be applied.
  2303. </summary>
  2304. <remarks>
  2305. If set too short, queries will more likely result in <see cref="T:System.TimeoutException"/>s.
  2306. <para>
  2307. Important to note, <see cref="T:System.TimeoutException"/>s will be retried, if <see cref="P:DnsClient.ILookupClient.Retries"/> are not disabled.
  2308. This should help in case one or more configured DNS servers are not reachable or under load for example.
  2309. </para>
  2310. </remarks>
  2311. </member>
  2312. <member name="P:DnsClient.ILookupClient.UseTcpFallback">
  2313. <summary>
  2314. Gets or sets a flag indicating if Tcp should not be used in case a Udp response is truncated.
  2315. If <c>true</c>, truncated results will potentially yield no answers.
  2316. </summary>
  2317. </member>
  2318. <member name="P:DnsClient.ILookupClient.UseTcpOnly">
  2319. <summary>
  2320. Gets or sets a flag indicating if Udp should not be used at all.
  2321. <para>
  2322. Use this only if Udp cannot be used because of your firewall rules for example.
  2323. </para>
  2324. </summary>
  2325. </member>
  2326. <member name="T:DnsClient.LookupClient">
  2327. <summary>
  2328. The <see cref="T:DnsClient.LookupClient"/> is the main query class of this library and should be used for any kind of DNS lookup query.
  2329. <para>
  2330. It implements <see cref="T:DnsClient.ILookupClient"/> and <see cref="T:DnsClient.IDnsQuery"/> which contains a number of extension methods, too.
  2331. The extension methods internally all invoke the standard <see cref="T:DnsClient.IDnsQuery"/> queries though.
  2332. </para>
  2333. </summary>
  2334. <seealso cref="T:DnsClient.IDnsQuery"/>
  2335. <seealso cref="T:DnsClient.ILookupClient"/>
  2336. <example>
  2337. A basic example wihtout specifying any DNS server, which will use the DNS server configured by your local network.
  2338. <code>
  2339. <![CDATA[
  2340. var client = new LookupClient();
  2341. var result = client.Query("google.com", QueryType.A);
  2342. foreach (var aRecord in result.Answers.ARecords())
  2343. {
  2344. Console.WriteLine(aRecord);
  2345. }
  2346. ]]>
  2347. </code>
  2348. </example>
  2349. </member>
  2350. <member name="P:DnsClient.LookupClient.UseTcpFallback">
  2351. <inheritdoc />
  2352. </member>
  2353. <member name="P:DnsClient.LookupClient.UseTcpOnly">
  2354. <inheritdoc />
  2355. </member>
  2356. <member name="P:DnsClient.LookupClient.NameServers">
  2357. <inheritdoc />
  2358. </member>
  2359. <member name="P:DnsClient.LookupClient.EnableAuditTrail">
  2360. <inheritdoc />
  2361. </member>
  2362. <member name="P:DnsClient.LookupClient.Recursion">
  2363. <inheritdoc />
  2364. </member>
  2365. <member name="P:DnsClient.LookupClient.Retries">
  2366. <inheritdoc />
  2367. </member>
  2368. <member name="P:DnsClient.LookupClient.ThrowDnsErrors">
  2369. <inheritdoc />
  2370. </member>
  2371. <member name="P:DnsClient.LookupClient.Timeout">
  2372. <inheritdoc />
  2373. </member>
  2374. <member name="P:DnsClient.LookupClient.UseCache">
  2375. <inheritdoc />
  2376. </member>
  2377. <member name="P:DnsClient.LookupClient.MinimumCacheTimeout">
  2378. <inheritdoc />
  2379. </member>
  2380. <member name="M:DnsClient.LookupClient.#ctor">
  2381. <summary>
  2382. Creates a new instance of <see cref="T:DnsClient.LookupClient"/> without specifying any name server.
  2383. This will implicitly use the name server(s) configured by the local network adapter.
  2384. </summary>
  2385. <remarks>
  2386. This uses <see cref="M:DnsClient.NameServer.ResolveNameServers(System.Boolean,System.Boolean)"/>.
  2387. The resulting list of name servers is highly dependent on the local network configuration and OS.
  2388. </remarks>
  2389. <example>
  2390. In the following example, we will create a new <see cref="T:DnsClient.LookupClient"/> without explicitly defining any DNS server.
  2391. This will use the DNS server configured by your local network.
  2392. <code>
  2393. <![CDATA[
  2394. var client = new LookupClient();
  2395. var result = client.Query("google.com", QueryType.A);
  2396. foreach (var aRecord in result.Answers.ARecords())
  2397. {
  2398. Console.WriteLine(aRecord);
  2399. }
  2400. ]]>
  2401. </code>
  2402. </example>
  2403. </member>
  2404. <member name="M:DnsClient.LookupClient.#ctor(System.Net.IPAddress[])">
  2405. <summary>
  2406. Creates a new instance of <see cref="T:DnsClient.LookupClient"/> with one or more DNS servers identified by their <see cref="T:System.Net.IPAddress"/>.
  2407. The default port <c>53</c> will be used for all <see cref="T:System.Net.IPAddress"/>s provided.
  2408. </summary>
  2409. <param name="nameServers">The <see cref="T:System.Net.IPAddress"/>(s) to be used by this <see cref="T:DnsClient.LookupClient"/> instance.</param>
  2410. <example>
  2411. To connect to one or more DNS server using the default port, we can use this overload:
  2412. <code>
  2413. <![CDATA[
  2414. // configuring the client to use google's public IPv4 DNS servers.
  2415. var client = new LookupClient(IPAddress.Parse("8.8.8.8"), IPAddress.Parse("8.8.4.4"));
  2416. ]]>
  2417. </code>
  2418. </example>
  2419. </member>
  2420. <member name="M:DnsClient.LookupClient.#ctor(System.Net.IPAddress,System.Int32)">
  2421. <summary>
  2422. Create a new instance of <see cref="T:DnsClient.LookupClient"/> with one DNS server defined by <paramref name="address"/> and <paramref name="port"/>.
  2423. </summary>
  2424. <param name="address">The <see cref="T:System.Net.IPAddress"/> of the DNS server.</param>
  2425. <param name="port">The port of the DNS server.</param>
  2426. <example>
  2427. In case you want to connect to one specific DNS server which does not run on the default port <c>53</c>, you can do so like in the following example:
  2428. <code>
  2429. <![CDATA[
  2430. var client = new LookupClient(IPAddress.Parse("127.0.0.1"), 8600);
  2431. ]]>
  2432. </code>
  2433. </example>
  2434. </member>
  2435. <member name="M:DnsClient.LookupClient.#ctor(System.Net.IPEndPoint[])">
  2436. <summary>
  2437. Creates a new instance of <see cref="T:DnsClient.LookupClient"/> with one or more <see cref="T:System.Net.IPAddress"/> and port combination
  2438. stored in <see cref="T:System.Net.IPEndPoint"/>(s).
  2439. </summary>
  2440. <param name="nameServers">The <see cref="T:System.Net.IPEndPoint"/>(s) to be used by this <see cref="T:DnsClient.LookupClient"/> instance.</param>
  2441. <example>
  2442. In this example, we instantiate a new <see cref="T:System.Net.IPEndPoint"/> using an <see cref="T:System.Net.IPAddress"/> and custom port which is different than the default port <c>53</c>.
  2443. <code>
  2444. <![CDATA[
  2445. // Using localhost and port 8600 to connect to a Consul agent.
  2446. var endpoint = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 8600);
  2447. var client = new LookupClient(endpoint);
  2448. ]]>
  2449. </code>
  2450. <para>
  2451. The <see cref="T:DnsClient.NameServer"/> class also contains pre defined <see cref="T:System.Net.IPEndPoint"/>s for the public google DNS servers, which can be used as follows:
  2452. <code>
  2453. <![CDATA[
  2454. var client = new LookupClient(NameServer.GooglePublicDns, NameServer.GooglePublicDnsIPv6);
  2455. ]]>
  2456. </code>
  2457. </para>
  2458. </example>
  2459. </member>
  2460. <member name="M:DnsClient.LookupClient.QueryReverse(System.Net.IPAddress)">
  2461. <inheritdoc />
  2462. </member>
  2463. <member name="M:DnsClient.LookupClient.QueryReverseAsync(System.Net.IPAddress)">
  2464. <inheritdoc />
  2465. <remarks>
  2466. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2467. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2468. </remarks>
  2469. </member>
  2470. <member name="M:DnsClient.LookupClient.QueryReverseAsync(System.Net.IPAddress,System.Threading.CancellationToken)">
  2471. <inheritdoc />
  2472. <remarks>
  2473. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2474. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2475. </remarks>
  2476. </member>
  2477. <member name="M:DnsClient.LookupClient.Query(System.String,DnsClient.QueryType)">
  2478. <inheritdoc />
  2479. <remarks>
  2480. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2481. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2482. </remarks>
  2483. </member>
  2484. <member name="M:DnsClient.LookupClient.Query(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
  2485. <inheritdoc />
  2486. <remarks>
  2487. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2488. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2489. </remarks>
  2490. </member>
  2491. <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType)">
  2492. <inheritdoc />
  2493. <remarks>
  2494. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2495. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2496. </remarks>
  2497. </member>
  2498. <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType,System.Threading.CancellationToken)">
  2499. <inheritdoc />
  2500. <remarks>
  2501. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2502. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2503. </remarks>
  2504. </member>
  2505. <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass)">
  2506. <inheritdoc />
  2507. <remarks>
  2508. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2509. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2510. </remarks>
  2511. </member>
  2512. <member name="M:DnsClient.LookupClient.QueryAsync(System.String,DnsClient.QueryType,DnsClient.QueryClass,System.Threading.CancellationToken)">
  2513. <inheritdoc />
  2514. <remarks>
  2515. The behavior of the query can be controlled by the properties of this <see cref="T:DnsClient.LookupClient"/> instance.
  2516. <see cref="P:DnsClient.LookupClient.Recursion"/> for example can be disabled and would instruct the DNS server to return no additional records.
  2517. </remarks>
  2518. </member>
  2519. <member name="T:DnsClient.NameServer">
  2520. <summary>
  2521. Represents a name server instance used by <see cref="T:DnsClient.ILookupClient"/>.
  2522. Also, comes with some static methods to resolve name servers from the local network configuration.
  2523. </summary>
  2524. </member>
  2525. <member name="F:DnsClient.NameServer.DefaultPort">
  2526. <summary>
  2527. The default DNS server port.
  2528. </summary>
  2529. </member>
  2530. <member name="F:DnsClient.NameServer.GooglePublicDns">
  2531. <summary>
  2532. The public google DNS IPv4 endpoint.
  2533. </summary>
  2534. </member>
  2535. <member name="F:DnsClient.NameServer.GooglePublicDns2">
  2536. <summary>
  2537. The second public google DNS IPv6 endpoint.
  2538. </summary>
  2539. </member>
  2540. <member name="F:DnsClient.NameServer.GooglePublicDnsIPv6">
  2541. <summary>
  2542. The public google DNS IPv6 endpoint.
  2543. </summary>
  2544. </member>
  2545. <member name="F:DnsClient.NameServer.GooglePublicDns2IPv6">
  2546. <summary>
  2547. The second public google DNS IPv6 endpoint.
  2548. </summary>
  2549. </member>
  2550. <member name="M:DnsClient.NameServer.#ctor(System.Net.IPAddress)">
  2551. <summary>
  2552. Initializes a new instance of the <see cref="T:DnsClient.NameServer"/> class.
  2553. </summary>
  2554. <param name="endpoint">The endpoint.</param>
  2555. </member>
  2556. <member name="M:DnsClient.NameServer.#ctor(System.Net.IPEndPoint)">
  2557. <summary>
  2558. Initializes a new instance of the <see cref="T:DnsClient.NameServer"/> class.
  2559. </summary>
  2560. <param name="endpoint">The endpoint.</param>
  2561. <exception cref="T:System.ArgumentNullException">If <paramref name="endpoint"/> is null.</exception>
  2562. </member>
  2563. <member name="P:DnsClient.NameServer.Enabled">
  2564. <summary>
  2565. Gets a value indicating whether this <see cref="T:DnsClient.NameServer"/> is enabled.
  2566. <para>
  2567. The instance might get disabled if <see cref="T:DnsClient.ILookupClient"/> encounters problems to connect to it.
  2568. </para>
  2569. </summary>
  2570. <value>
  2571. <c>true</c> if enabled; otherwise, <c>false</c>.
  2572. </value>
  2573. </member>
  2574. <member name="P:DnsClient.NameServer.Endpoint">
  2575. <summary>
  2576. Gets the endpoint of this instance.
  2577. </summary>
  2578. <value>
  2579. The endpoint.
  2580. </value>
  2581. </member>
  2582. <member name="P:DnsClient.NameServer.SupportedUdpPayloadSize">
  2583. <summary>
  2584. Gets the size of the supported UDP payload.
  2585. <para>
  2586. This value might get updated by <see cref="T:DnsClient.ILookupClient"/> by reading the options records returned by a query.
  2587. </para>
  2588. </summary>
  2589. <value>
  2590. The size of the supported UDP payload.
  2591. </value>
  2592. </member>
  2593. <member name="M:DnsClient.NameServer.ToString">
  2594. <summary>
  2595. Returns a <see cref="T:System.String" /> that represents this instance.
  2596. </summary>
  2597. <returns>
  2598. A <see cref="T:System.String" /> that represents this instance.
  2599. </returns>
  2600. </member>
  2601. <member name="M:DnsClient.NameServer.ResolveNameServers(System.Boolean,System.Boolean)">
  2602. <summary>
  2603. Gets a list of name servers by iterating over the available network interfaces.
  2604. <para>
  2605. If <paramref name="fallbackToGooglePublicDns" /> is enabled, this method will return the google public dns endpoints if no
  2606. local DNS server was found.
  2607. </para>
  2608. </summary>
  2609. <param name="skipIPv6SiteLocal">If set to <c>true</c> local IPv6 sites are skiped.</param>
  2610. <param name="fallbackToGooglePublicDns">If set to <c>true</c> the public Google DNS servers are returned if no other servers could be found.</param>
  2611. <returns>
  2612. The list of name servers.
  2613. </returns>
  2614. </member>
  2615. <member name="T:DnsClient.QueryClass">
  2616. <summary>
  2617. CLASS fields appear in resource records.
  2618. </summary>
  2619. </member>
  2620. <member name="F:DnsClient.QueryClass.IN">
  2621. <summary>
  2622. The Internet.
  2623. </summary>
  2624. </member>
  2625. <member name="F:DnsClient.QueryClass.CS">
  2626. <summary>
  2627. The CSNET class (Obsolete - used only for examples in some obsolete RFCs).
  2628. </summary>
  2629. </member>
  2630. <member name="F:DnsClient.QueryClass.CH">
  2631. <summary>
  2632. The CHAOS class.
  2633. </summary>
  2634. </member>
  2635. <member name="F:DnsClient.QueryClass.HS">
  2636. <summary>
  2637. Hesiod [Dyer 87].
  2638. </summary>
  2639. </member>
  2640. <member name="T:DnsClient.QueryType">
  2641. <summary>
  2642. The query type field appear in the question part of a query.
  2643. Query types are a superset of <see cref="T:DnsClient.Protocol.ResourceRecordType"/>.
  2644. </summary>
  2645. </member>
  2646. <member name="F:DnsClient.QueryType.A">
  2647. <summary>
  2648. A host address.
  2649. </summary>
  2650. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  2651. <seealso cref="T:DnsClient.Protocol.ARecord"/>
  2652. </member>
  2653. <member name="F:DnsClient.QueryType.NS">
  2654. <summary>
  2655. An authoritative name server.
  2656. </summary>
  2657. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  2658. <seealso cref="T:DnsClient.Protocol.NsRecord"/>
  2659. </member>
  2660. <member name="F:DnsClient.QueryType.MD">
  2661. <summary>
  2662. A mail destination (OBSOLETE - use MX).
  2663. </summary>
  2664. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  2665. </member>
  2666. <member name="F:DnsClient.QueryType.MF">
  2667. <summary>
  2668. A mail forwarder (OBSOLETE - use MX).
  2669. </summary>
  2670. <seealso href="https://tools.ietf.org/html/rfc1035">RFC 1035</seealso>
  2671. </member>
  2672. <member name="F:DnsClient.QueryType.CNAME">
  2673. <summary>
  2674. The canonical name for an alias.
  2675. </summary>
  2676. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.1">RFC 1035</seealso>
  2677. <seealso cref="T:DnsClient.Protocol.CNameRecord"/>
  2678. </member>
  2679. <member name="F:DnsClient.QueryType.SOA">
  2680. <summary>
  2681. Marks the start of a zone of authority.
  2682. </summary>
  2683. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.13">RFC 1035</seealso>
  2684. <seealso cref="T:DnsClient.Protocol.SoaRecord"/>
  2685. </member>
  2686. <member name="F:DnsClient.QueryType.MB">
  2687. <summary>
  2688. A mailbox domain name (EXPERIMENTAL).
  2689. </summary>
  2690. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.3">RFC 1035</seealso>
  2691. <seealso cref="T:DnsClient.Protocol.MbRecord"/>
  2692. </member>
  2693. <member name="F:DnsClient.QueryType.MG">
  2694. <summary>
  2695. A mail group member (EXPERIMENTAL).
  2696. </summary>
  2697. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.6">RFC 1035</seealso>
  2698. <seealso cref="T:DnsClient.Protocol.MgRecord"/>
  2699. </member>
  2700. <member name="F:DnsClient.QueryType.MR">
  2701. <summary>
  2702. A mailbox rename domain name (EXPERIMENTAL).
  2703. </summary>
  2704. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
  2705. <seealso cref="T:DnsClient.Protocol.MrRecord"/>
  2706. </member>
  2707. <member name="F:DnsClient.QueryType.NULL">
  2708. <summary>
  2709. A Null resource record (EXPERIMENTAL).
  2710. </summary>
  2711. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.8">RFC 1035</seealso>
  2712. <seealso cref="T:DnsClient.Protocol.NullRecord"/>
  2713. </member>
  2714. <member name="F:DnsClient.QueryType.WKS">
  2715. <summary>
  2716. A well known service description.
  2717. </summary>
  2718. <seealso href="https://tools.ietf.org/html/rfc3232">RFC 3232</seealso>
  2719. <seealso cref="T:DnsClient.Protocol.WksRecord"/>
  2720. </member>
  2721. <member name="F:DnsClient.QueryType.PTR">
  2722. <summary>
  2723. A domain name pointer.
  2724. </summary>
  2725. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.12">RFC 1035</seealso>
  2726. <seealso cref="T:DnsClient.Protocol.PtrRecord"/>
  2727. </member>
  2728. <member name="F:DnsClient.QueryType.HINFO">
  2729. <summary>
  2730. Host information.
  2731. </summary>
  2732. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  2733. <seealso href="https://tools.ietf.org/html/rfc1010">RFC 1010</seealso>
  2734. <seealso cref="T:DnsClient.Protocol.HInfoRecord"/>
  2735. </member>
  2736. <member name="F:DnsClient.QueryType.MINFO">
  2737. <summary>
  2738. Mailbox or mail list information.
  2739. </summary>
  2740. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.11">RFC 1035</seealso>
  2741. <seealso cref="T:DnsClient.Protocol.MInfoRecord"/>
  2742. </member>
  2743. <member name="F:DnsClient.QueryType.MX">
  2744. <summary>
  2745. Mail exchange.
  2746. </summary>
  2747. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3.9">RFC 1035</seealso>
  2748. <seealso href="https://tools.ietf.org/html/rfc974">RFC 974</seealso>
  2749. <seealso cref="T:DnsClient.Protocol.MxRecord"/>
  2750. </member>
  2751. <member name="F:DnsClient.QueryType.TXT">
  2752. <summary>
  2753. Text resources.
  2754. </summary>
  2755. <seealso href="https://tools.ietf.org/html/rfc1035#section-3.3">RFC 1035</seealso>
  2756. <seealso href="https://tools.ietf.org/html/rfc1464">RFC 1464</seealso>
  2757. <seealso cref="T:DnsClient.Protocol.TxtRecord"/>
  2758. </member>
  2759. <member name="F:DnsClient.QueryType.RP">
  2760. <summary>
  2761. Responsible Person.
  2762. </summary>
  2763. <seealso href="https://tools.ietf.org/html/rfc1183">RFC 1183</seealso>
  2764. <seealso cref="T:DnsClient.Protocol.RpRecord"/>
  2765. </member>
  2766. <member name="F:DnsClient.QueryType.AFSDB">
  2767. <summary>
  2768. AFS Data Base location.
  2769. </summary>
  2770. <seealso href="https://tools.ietf.org/html/rfc1183#section-1">RFC 1183</seealso>
  2771. <seealso href="https://tools.ietf.org/html/rfc5864">RFC 5864</seealso>
  2772. <seealso cref="T:DnsClient.Protocol.AfsDbRecord"/>
  2773. </member>
  2774. <member name="F:DnsClient.QueryType.AAAA">
  2775. <summary>
  2776. An IPv6 host address.
  2777. </summary>
  2778. <seealso href="https://tools.ietf.org/html/rfc3596#section-2.2">RFC 3596</seealso>
  2779. <seealso cref="T:DnsClient.Protocol.AaaaRecord"/>
  2780. </member>
  2781. <member name="F:DnsClient.QueryType.SRV">
  2782. <summary>
  2783. A resource record which specifies the location of the server(s) for a specific protocol and domain.
  2784. </summary>
  2785. <seealso href="https://tools.ietf.org/html/rfc2782">RFC 2782</seealso>
  2786. <seealso cref="T:DnsClient.Protocol.SrvRecord"/>
  2787. </member>
  2788. <member name="F:DnsClient.QueryType.RRSIG">
  2789. <summary>
  2790. RRSIG rfc3755.
  2791. </summary>
  2792. <seealso href="https://tools.ietf.org/html/rfc3755">RFC 3755</seealso>
  2793. </member>
  2794. <member name="F:DnsClient.QueryType.ANY">
  2795. <summary>
  2796. Generic any query *.
  2797. </summary>
  2798. </member>
  2799. <member name="F:DnsClient.QueryType.URI">
  2800. <summary>
  2801. A Uniform Resource Identifier (URI) resource record.
  2802. </summary>
  2803. <seealso href="https://tools.ietf.org/html/rfc7553">RFC 7553</seealso>
  2804. <seealso cref="T:DnsClient.Protocol.UriRecord"/>
  2805. </member>
  2806. <member name="F:DnsClient.QueryType.CAA">
  2807. <summary>
  2808. A certification authority authorization.
  2809. </summary>
  2810. <seealso href="https://tools.ietf.org/html/rfc6844">RFC 6844</seealso>
  2811. <seealso cref="T:DnsClient.Protocol.CaaRecord"/>
  2812. </member>
  2813. <member name="T:DnsClient.StaticLog">
  2814. <summary>
  2815. Used for debugging at the moment, might be removed in a future release.
  2816. </summary>
  2817. </member>
  2818. <member name="F:DnsClient.StaticLog.ByteArrayAllocations">
  2819. <summary>
  2820. The number of byte array allocations.
  2821. </summary>
  2822. </member>
  2823. <member name="F:DnsClient.StaticLog.ByteArrayReleases">
  2824. <summary>
  2825. The number of byte arrays released.
  2826. </summary>
  2827. </member>
  2828. <member name="F:DnsClient.StaticLog.ResolveQueryCount">
  2829. <summary>
  2830. The number of resolved queries.
  2831. </summary>
  2832. </member>
  2833. <member name="F:DnsClient.StaticLog.ResolveQueryTries">
  2834. <summary>
  2835. The number of resolve query tries.
  2836. </summary>
  2837. </member>
  2838. <member name="F:DnsClient.StaticLog.CreatedClients">
  2839. <summary>
  2840. The number of created clients.
  2841. </summary>
  2842. </member>
  2843. <member name="T:System.IO.RowConfigReader">
  2844. <summary>
  2845. Helper for reading config files where each row is a key-value data pair.
  2846. The input key-values must not have any whitespace within them.
  2847. Keys are only matched if they begin a line, with no preceding whitespace.
  2848. </summary>
  2849. </member>
  2850. <member name="M:System.IO.RowConfigReader.#ctor(System.String)">
  2851. <summary>
  2852. Constructs a new RowConfigReader which reads from the given string.
  2853. <param name="buffer">The string to parse through.</param>
  2854. </summary>
  2855. </member>
  2856. <member name="M:System.IO.RowConfigReader.#ctor(System.String,System.StringComparison)">
  2857. <summary>
  2858. Constructs a new RowConfigReader which reads from the given string.
  2859. <param name="buffer">The string to parse through.</param>
  2860. <param name="comparisonKind">The comparison kind to use.</param>
  2861. </summary>
  2862. </member>
  2863. <member name="M:System.IO.RowConfigReader.GetNextValue(System.String)">
  2864. <summary>
  2865. Gets the next occurrence of the given key, from the current position of the reader,
  2866. or throws if no occurrence of the key exists in the remainder of the string.
  2867. </summary>
  2868. </member>
  2869. <member name="M:System.IO.RowConfigReader.TryGetNextValue(System.String,System.String@)">
  2870. <summary>
  2871. Tries to get the next occurrence of the given key from the current position of the reader.
  2872. If successful, returns true and stores the result in 'value'. Otherwise, returns false.
  2873. </summary>
  2874. </member>
  2875. <member name="M:System.IO.RowConfigReader.GetNextValueAsInt32(System.String)">
  2876. <summary>
  2877. Gets the next occurrence of the key in the string, and parses it as an Int32.
  2878. Throws if the key is not found in the remainder of the string, or if the key
  2879. cannot be successfully parsed into an Int32.
  2880. </summary>
  2881. <remarks>
  2882. This is mainly provided as a helper because most Linux config/info files
  2883. store integral data.
  2884. </remarks>
  2885. </member>
  2886. <member name="M:System.IO.RowConfigReader.ReadFirstValueFromString(System.String,System.String)">
  2887. <summary>
  2888. Reads the value of the first occurrence of the given key contained in the string given.
  2889. </summary>
  2890. <param name="data">The key-value row configuration string.</param>
  2891. <param name="key">The key to find.</param>
  2892. <returns>The value of the row containing the first occurrence of the key.</returns>
  2893. </member>
  2894. <member name="T:System.Net.IpAddressExtensions">
  2895. <summary>
  2896. Extension methods for <see cref="T:System.Net.IPAddress"/>.
  2897. </summary>
  2898. </member>
  2899. <member name="M:System.Net.IpAddressExtensions.GetArpaName(System.Net.IPAddress)">
  2900. <summary>
  2901. Translates a IPv4 or IPv6 <see cref="T:System.Net.IPAddress"/> into an <see href="https://en.wikipedia.org/wiki/.arpa">arpa address</see>.
  2902. Used for reverse DNS lookup to get the domain name of the given <see cref="T:System.Net.IPAddress"/>.
  2903. </summary>
  2904. <param name="ip">The address to translate.</param>
  2905. <returns>The arpa representation of the address.</returns>
  2906. <seealso cref="M:DnsClient.IDnsQuery.QueryReverse(System.Net.IPAddress)"/>
  2907. <seealso cref="M:DnsClient.IDnsQuery.QueryReverseAsync(System.Net.IPAddress)"/>
  2908. <seealso href="https://en.wikipedia.org/wiki/.arpa"/>
  2909. </member>
  2910. <member name="T:System.Linq.RecordCollectionExtension">
  2911. <summary>
  2912. Extension methods for <see cref="T:System.Collections.Generic.IEnumerable`1"/> where <c>T</c> is <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>.
  2913. </summary>
  2914. </member>
  2915. <member name="M:System.Linq.RecordCollectionExtension.ARecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2916. <summary>
  2917. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.ARecord"/>s only.
  2918. </summary>
  2919. <param name="records">The records.</param>
  2920. <returns>The list of <see cref="T:DnsClient.Protocol.ARecord"/>.</returns>
  2921. </member>
  2922. <member name="M:System.Linq.RecordCollectionExtension.NsRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2923. <summary>
  2924. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.NsRecord"/>s only.
  2925. </summary>
  2926. <param name="records">The records.</param>
  2927. <returns>The list of <see cref="T:DnsClient.Protocol.NsRecord"/>.</returns>
  2928. </member>
  2929. <member name="M:System.Linq.RecordCollectionExtension.CnameRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2930. <summary>
  2931. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.CNameRecord"/>s only.
  2932. </summary>
  2933. <param name="records">The records.</param>
  2934. <returns>The list of <see cref="T:DnsClient.Protocol.CNameRecord"/>.</returns>
  2935. </member>
  2936. <member name="M:System.Linq.RecordCollectionExtension.SoaRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2937. <summary>
  2938. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.SoaRecord"/>s only.
  2939. </summary>
  2940. <param name="records">The records.</param>
  2941. <returns>The list of <see cref="T:DnsClient.Protocol.SoaRecord"/>.</returns>
  2942. </member>
  2943. <member name="M:System.Linq.RecordCollectionExtension.MbRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2944. <summary>
  2945. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MbRecord"/>s only.
  2946. </summary>
  2947. <param name="records">The records.</param>
  2948. <returns>The list of <see cref="T:DnsClient.Protocol.MbRecord"/>.</returns>
  2949. </member>
  2950. <member name="M:System.Linq.RecordCollectionExtension.MgRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2951. <summary>
  2952. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MgRecord"/>s only.
  2953. </summary>
  2954. <param name="records">The records.</param>
  2955. <returns>The list of <see cref="T:DnsClient.Protocol.MgRecord"/>.</returns>
  2956. </member>
  2957. <member name="M:System.Linq.RecordCollectionExtension.MrRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2958. <summary>
  2959. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MrRecord"/>s only.
  2960. </summary>
  2961. <param name="records">The records.</param>
  2962. <returns>The list of <see cref="T:DnsClient.Protocol.MrRecord"/>.</returns>
  2963. </member>
  2964. <member name="M:System.Linq.RecordCollectionExtension.NullRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2965. <summary>
  2966. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.NullRecord"/>s only.
  2967. </summary>
  2968. <param name="records">The records.</param>
  2969. <returns>The list of <see cref="T:DnsClient.Protocol.NullRecord"/>.</returns>
  2970. </member>
  2971. <member name="M:System.Linq.RecordCollectionExtension.WksRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2972. <summary>
  2973. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.WksRecord"/>s only.
  2974. </summary>
  2975. <param name="records">The records.</param>
  2976. <returns>The list of <see cref="T:DnsClient.Protocol.WksRecord"/>.</returns>
  2977. </member>
  2978. <member name="M:System.Linq.RecordCollectionExtension.PtrRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2979. <summary>
  2980. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.PtrRecord"/>s only.
  2981. </summary>
  2982. <param name="records">The records.</param>
  2983. <returns>The list of <see cref="T:DnsClient.Protocol.PtrRecord"/>.</returns>
  2984. </member>
  2985. <member name="M:System.Linq.RecordCollectionExtension.HInfoRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2986. <summary>
  2987. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.HInfoRecord"/>s only.
  2988. </summary>
  2989. <param name="records">The records.</param>
  2990. <returns>The list of <see cref="T:DnsClient.Protocol.HInfoRecord"/>.</returns>
  2991. </member>
  2992. <member name="M:System.Linq.RecordCollectionExtension.MxRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  2993. <summary>
  2994. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.MxRecord"/>s only.
  2995. </summary>
  2996. <param name="records">The records.</param>
  2997. <returns>The list of <see cref="T:DnsClient.Protocol.MxRecord"/>.</returns>
  2998. </member>
  2999. <member name="M:System.Linq.RecordCollectionExtension.TxtRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  3000. <summary>
  3001. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.TxtRecord"/>s only.
  3002. </summary>
  3003. <param name="records">The records.</param>
  3004. <returns>The list of <see cref="T:DnsClient.Protocol.TxtRecord"/>.</returns>
  3005. </member>
  3006. <member name="M:System.Linq.RecordCollectionExtension.RpRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  3007. <summary>
  3008. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.RpRecord"/>s only.
  3009. </summary>
  3010. <param name="records">The records.</param>
  3011. <returns>The list of <see cref="T:DnsClient.Protocol.RpRecord"/>.</returns>
  3012. </member>
  3013. <member name="M:System.Linq.RecordCollectionExtension.AfsDbRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  3014. <summary>
  3015. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.AfsDbRecord"/>s only.
  3016. </summary>
  3017. <param name="records">The records.</param>
  3018. <returns>The list of <see cref="T:DnsClient.Protocol.AfsDbRecord"/>.</returns>
  3019. </member>
  3020. <member name="M:System.Linq.RecordCollectionExtension.AaaaRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  3021. <summary>
  3022. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.AaaaRecord"/>s only.
  3023. </summary>
  3024. <param name="records">The records.</param>
  3025. <returns>The list of <see cref="T:DnsClient.Protocol.AaaaRecord"/>.</returns>
  3026. </member>
  3027. <member name="M:System.Linq.RecordCollectionExtension.SrvRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  3028. <summary>
  3029. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.SrvRecord"/>s only.
  3030. </summary>
  3031. <param name="records">The records.</param>
  3032. <returns>The list of <see cref="T:DnsClient.Protocol.SrvRecord"/>.</returns>
  3033. </member>
  3034. <member name="M:System.Linq.RecordCollectionExtension.UriRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  3035. <summary>
  3036. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.UriRecord"/>s only.
  3037. </summary>
  3038. <param name="records">The records.</param>
  3039. <returns>The list of <see cref="T:DnsClient.Protocol.UriRecord"/>.</returns>
  3040. </member>
  3041. <member name="M:System.Linq.RecordCollectionExtension.CaaRecords(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord})">
  3042. <summary>
  3043. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.CaaRecord"/>s only.
  3044. </summary>
  3045. <param name="records">The records.</param>
  3046. <returns>The list of <see cref="T:DnsClient.Protocol.CaaRecord"/>.</returns>
  3047. </member>
  3048. <member name="M:System.Linq.RecordCollectionExtension.OfRecordType(System.Collections.Generic.IEnumerable{DnsClient.Protocol.DnsResourceRecord},DnsClient.Protocol.ResourceRecordType)">
  3049. <summary>
  3050. Filters the elements of an <see cref="T:System.Collections.Generic.IEnumerable`1"/> to return <see cref="T:DnsClient.Protocol.DnsResourceRecord"/>s
  3051. which have the <paramref name="type"/>.
  3052. </summary>
  3053. <param name="records">The records.</param>
  3054. <param name="type">The <see cref="T:DnsClient.Protocol.ResourceRecordType"/> to filter for.</param>
  3055. <returns>The list of <see cref="T:DnsClient.Protocol.ARecord"/>.</returns>
  3056. </member>
  3057. </members>
  3058. </doc>