IAttribute.cs 189 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace STUN.Message.Attributes
  3. {
  4. public interface IAttribute
  5. {
  6. public IEnumerable<byte> Bytes { get; }
  7. public bool TryParse(byte[] bytes);
  8. }
  9. }