Namespace Google.Protobuf
'''
''' Wire types within protobuf encoding.
'''
Public Enum WireType As UInteger
'''
''' Variable-length integer.
'''
Varint = 0
'''
''' A fixed-length 64-bit value.
'''
Fixed64 = 1
'''
''' A length-delimited value, i.e. a length followed by that many bytes of data.
'''
LengthDelimited = 2
'''
''' A "start group" value - not supported by this implementation.
'''
StartGroup = 3
'''
''' An "end group" value - not supported by this implementation.
'''
EndGroup = 4
'''
''' A fixed-length 32-bit value.
'''
Fixed32 = 5
End Enum
End Namespace