using System; namespace DnsClient { /* * * Reference: [RFC6895][RFC1035] 0 Query [RFC1035] 1 IQuery (Inverse Query, OBSOLETE) [RFC3425] 2 Status [RFC1035] 3 Unassigned 4 Notify [RFC1996] 5 Update [RFC2136] 6-15 Unassigned * */ /// /// RFCs 1035, 1996, 2136, 3425. /// Specifies kind of query in this message. /// This value is set by the originator of a query and copied into the response. /// public enum DnsOpCode : short { /// /// RFC 1035. /// A standard query. /// Query, /// /// RFC 3425. /// An inverse query. /// [Obsolete] IQuery, /// /// RFC 1035. /// A server status request. /// Status, Unassinged3, /// /// RFC 1996. /// Notify, /// /// RFC 2136. /// Update, Unassinged6, Unassinged7, Unassinged8, Unassinged9, Unassinged10, Unassinged11, Unassinged12, Unassinged13, Unassinged14, Unassinged15, } }