12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
-
- using System.IO;
- namespace ProtoBuf
- {
-
-
-
-
-
- public interface IExtension
- {
-
-
-
-
- Stream BeginAppend();
-
-
-
-
-
-
-
- void EndAppend(Stream stream, bool commit);
-
-
-
-
- Stream BeginQuery();
-
-
-
-
-
- void EndQuery(Stream stream);
-
-
-
-
-
- int GetLength();
- }
-
-
-
- public interface IExtensionResettable : IExtension
- {
-
-
-
- void Reset();
- }
- }
|