// Decompiled with JetBrains decompiler // Type: System.Windows.Forms.IByteProvider // Assembly: FiestaShark, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null // MVID: 12469781-3753-4869-9C1A-117F1862B52C // Assembly location: E:\Fiesta\Emus\DragonFiesta\Tools\FiestaShark-Farbod\FiestaShark.exe namespace System.Windows.Forms { public interface IByteProvider { byte ReadByte(long index); void WriteByte(long index, byte value); void InsertBytes(long index, byte[] bs); void DeleteBytes(long index, long length); long Length { get; } event EventHandler LengthChanged; bool HasChanges(); void ApplyChanges(); event EventHandler Changed; bool SupportsWriteByte(); bool SupportsInsertBytes(); bool SupportsDeleteBytes(); } }