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,
///
/// A base-128 length prefix is applied to the data (efficient for short messages).
///
Base128,
///
/// A fixed-length (little-endian) length prefix is applied to the data (useful for compatibility).
///
Fixed32,
///
/// A fixed-length (big-endian) length prefix is applied to the data (useful for compatibility).
///
Fixed32BigEndian
}
}