Пример #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));
 }
Пример #2
0
 private bool EqualsData(IpV6OptionSimplifiedMulticastForwardingDuplicatePacketDetectionSequenceHashAssistValue other)
 {
     return(other != null &&
            HashAssistValue.Equals(other.HashAssistValue));
 }
Пример #3
0
 internal override int GetDataHashCode()
 {
     return(HashAssistValue.GetHashCode());
 }