예제 #1
0
 /// <summary>Helper: create a new instance to deserializing into</summary>
 public static CARegAccountC Deserialize(Stream stream)
 {
     CARegAccountC instance = new CARegAccountC();
     Deserialize(stream, instance);
     return instance;
 }
예제 #2
0
 /// <summary>Helper: put the buffer into a MemoryStream and create a new instance to deserializing into</summary>
 public static CARegAccountC Deserialize(byte[] buffer)
 {
     CARegAccountC instance = new CARegAccountC();
     using (var ms = new MemoryStream(buffer))
         Deserialize(ms, instance);
     return instance;
 }
예제 #3
0
 /// <summary>Helper: Serialize into a MemoryStream and return its byte array</summary>
 public static byte[] SerializeToBytes(CARegAccountC instance)
 {
     using (var ms = new MemoryStream())
     {
         Serialize(ms, instance);
         return ms.ToArray();
     }
 }
예제 #4
0
 /// <summary>Helper: Serialize with a varint length prefix</summary>
 public static void SerializeLengthDelimited(Stream stream, CARegAccountC instance)
 {
     var data = SerializeToBytes(instance);
     global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteUInt32(stream, (uint)data.Length);
     stream.Write(data, 0, data.Length);
 }
예제 #5
0
 /// <summary>Serialize the instance into the stream</summary>
 public static void Serialize(Stream stream, CARegAccountC instance)
 {
     var msField = global::SilentOrbit.ProtocolBuffers.ProtocolParser.Stack.Pop();
     if (instance.Name == null)
         throw new ArgumentNullException("Name", "Required by proto specification.");
     // Key for field: 1, LengthDelimited
     stream.WriteByte(10);
     global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteBytes(stream, Encoding.UTF8.GetBytes(instance.Name));
     if (instance.PasswdMd5 == null)
         throw new ArgumentNullException("PasswdMd5", "Required by proto specification.");
     // Key for field: 2, LengthDelimited
     stream.WriteByte(18);
     global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteBytes(stream, Encoding.UTF8.GetBytes(instance.PasswdMd5));
     if (instance.Mail != null)
     {
         // Key for field: 3, LengthDelimited
         stream.WriteByte(26);
         global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteBytes(stream, Encoding.UTF8.GetBytes(instance.Mail));
     }
     if (instance.Mobile != null)
     {
         // Key for field: 4, LengthDelimited
         stream.WriteByte(34);
         global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteBytes(stream, Encoding.UTF8.GetBytes(instance.Mobile));
     }
     global::SilentOrbit.ProtocolBuffers.ProtocolParser.Stack.Push(msField);
 }
예제 #6
0
 /// <summary>Helper: create a new instance to deserializing into</summary>
 public static CARegAccountC DeserializeLengthDelimited(Stream stream)
 {
     CARegAccountC instance = new CARegAccountC();
     DeserializeLengthDelimited(stream, instance);
     return instance;
 }
예제 #7
0
 /// <summary>Helper: create a new instance to deserializing into</summary>
 public static CARegAccountC DeserializeLength(Stream stream, int length)
 {
     CARegAccountC instance = new CARegAccountC();
     DeserializeLength(stream, length, instance);
     return instance;
 }