Exemplo n.º 1
0
 internal override bool EqualsData(DnsOption other)
 {
     DnsOptionLongLivedQuery castedOther = (DnsOptionLongLivedQuery)other;
     return Version.Equals(castedOther.Version) &&
            OpCode.Equals(castedOther.OpCode) &&
            ErrorCode.Equals(castedOther.ErrorCode) &&
            Id.Equals(castedOther.Id) &&
            LeaseLife.Equals(castedOther.LeaseLife);
 }
Exemplo n.º 2
0
 internal override bool EqualsData(DnsOption other)
 {
     return Lease.Equals(((DnsOptionUpdateLease)other).Lease);
 }
Exemplo n.º 3
0
 internal override bool EqualsData(DnsOption other)
 {
     return(Lease.Equals(((DnsOptionUpdateLease)other).Lease));
 }
Exemplo n.º 4
0
 internal override bool EqualsData(DnsOption other)
 {
     return Data.Equals(((DnsOptionAnything)other).Data);
 }
Exemplo n.º 5
0
 internal override bool EqualsData(DnsOption other)
 {
     return(Data.Equals(((DnsOptionAnything)other).Data));
 }
Exemplo n.º 6
0
 internal override bool EqualsData(DnsOption other)
 {
     return EqualsData(other as DnsOptionClientSubnet);
 }