Exemplo n.º 1
0
 internal override void WriteData(byte[] buffer, ref int offset)
 {
     buffer.Write(ref offset, (byte)(HashAssistValue[0] | 0x80));
     buffer.Write(ref offset, HashAssistValue.Subsegment(1, HashAssistValue.Length - 1));
 }
Exemplo n.º 2
0
 private bool EqualsData(IpV6OptionSimplifiedMulticastForwardingDuplicatePacketDetectionSequenceHashAssistValue other)
 {
     return(other != null &&
            HashAssistValue.Equals(other.HashAssistValue));
 }
Exemplo n.º 3
0
 internal override int GetDataHashCode()
 {
     return(HashAssistValue.GetHashCode());
 }