コード例 #1
0
ファイル: DnsResourceRecord.cs プロジェクト: blinds52/nhind
            internal void Deserialize(ref DnsBufferReader reader)
            {
                this.Name = reader.ReadDomainName();
                this.Type = (DnsStandard.RecordType)reader.ReadShort();

                this.Class            = (DnsStandard.Class)reader.ReadShort();
                this.TTL              = reader.ReadInt();
                this.RecordDataLength = reader.ReadShort();
            }
コード例 #2
0
ファイル: DnsQuestion.cs プロジェクト: ywangmaxmd/nhin-d
 internal void Deserialize(ref DnsBufferReader reader)
 {
     this.Domain = reader.ReadDomainName();
     this.Type   = (DnsStandard.RecordType)reader.ReadShort();
     this.Class  = (DnsStandard.Class)reader.ReadShort();
 }
コード例 #3
0
ファイル: DnsResourceRecord.cs プロジェクト: DM-TOR/nhin-d
            internal void Deserialize(ref DnsBufferReader reader)
            {
                this.Name = reader.ReadDomainName();
                this.Type = (DnsStandard.RecordType) reader.ReadShort();

                this.Class = (DnsStandard.Class) reader.ReadShort();
                this.TTL = reader.ReadInt();
                this.RecordDataLength = reader.ReadShort();
            }
コード例 #4
0
ファイル: DnsQuestion.cs プロジェクト: DM-TOR/nhin-d
 internal void Deserialize(ref DnsBufferReader reader)
 {
     this.Domain = reader.ReadDomainName();
     this.Type = (DnsStandard.RecordType) reader.ReadShort();
     this.Class = (DnsStandard.Class) reader.ReadShort();
 }