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