コード例 #1
0
 public T DeserializeFrom <T>(byte[] bytes, int index, int count)
 {
     return(ProtobufHelper.FromBytes <T>(bytes, index, count));
 }
コード例 #2
0
 public byte[] SerializeToByteArray(object obj)
 {
     return(ProtobufHelper.ToBytes(obj));
 }
コード例 #3
0
 public object DeserializeFrom(Type type, byte[] bytes, int index, int count)
 {
     return(ProtobufHelper.FromBytes(type, bytes, index, count));
 }
コード例 #4
0
 public T DeserializeFrom <T>(byte[] bytes)
 {
     return(ProtobufHelper.FromBytes <T>(bytes));
 }
コード例 #5
0
 public object DeserializeFrom(object instance, MemoryStream stream)
 {
     return(ProtobufHelper.FromStream(instance, stream));
 }
コード例 #6
0
 public object DeserializeFrom(Type type, byte[] bytes)
 {
     return(ProtobufHelper.FromBytes(type, bytes));
 }
コード例 #7
0
 public object DeserializeFrom(Type type, MemoryStream stream)
 {
     return(ProtobufHelper.FromStream(type, stream));
 }
コード例 #8
0
 public object DeserializeFrom(object instance, byte[] bytes, int index, int count)
 {
     return(ProtobufHelper.FromBytes(instance, bytes, index, count));
 }
コード例 #9
0
 public void SerializeTo(object obj, MemoryStream stream)
 {
     ProtobufHelper.ToStream(obj, stream);
 }
コード例 #10
0
 public T DeserializeFrom <T>(byte[] bytes, int index, int count) where T : SerializerBinary
 {
     return(ProtobufHelper.FromBytes <T>(bytes, index, count));
 }
コード例 #11
0
 public T DeserializeFrom <T>(byte[] bytes) where T : SerializerBinary
 {
     return(ProtobufHelper.FromBytes <T>(bytes));
 }