IStunAttributeValue.cs 179 B

12345678910
  1. using System;
  2. namespace STUN.Messages.StunAttributeValues;
  3. public interface IStunAttributeValue
  4. {
  5. int WriteTo(Span<byte> buffer);
  6. bool TryParse(ReadOnlySpan<byte> buffer);
  7. }