blob: 5699af9ac71f8afa2349af5336355b44146211c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
using System;
using ProtoBuf.Meta;
namespace ProtoBuf.Serializers
{
internal sealed class ByteSerializer : IProtoSerializer
{
public Type ExpectedType
{
get
{
return ByteSerializer.expectedType;
}
}
bool IProtoSerializer.RequiresOldValue
{
get
{
return false;
}
}
bool IProtoSerializer.ReturnsValue
{
get
{
return true;
}
}
private static readonly Type expectedType = typeof(byte);
public ByteSerializer(TypeModel model)
{
}
public void Write(object value, ProtoWriter dest)
{
ProtoWriter.WriteByte((byte)value, dest);
}
public object Read(object value, ProtoReader source)
{
Helpers.DebugAssert(value == null);
return source.ReadByte();
}
}
}
|