namespace ProtoBuf
{
///
/// Specifies the type of prefix that should be applied to messages.
///
public enum PrefixStyle
{
///
/// No length prefix is applied to the data; the data is terminated only be the end of the stream.
///
None = 0,
///
/// A base-128 ("varint", the default prefix format in protobuf) length prefix is applied to the data (efficient for short messages).
///
Base128 = 1,
///
/// A fixed-length (little-endian) length prefix is applied to the data (useful for compatibility).
///
Fixed32 = 2,
///
/// A fixed-length (big-endian) length prefix is applied to the data (useful for compatibility).
///
Fixed32BigEndian = 3
}
}