本文整理汇总了C#中MUd.UruStream.ReadByte方法的典型用法代码示例。如果您正苦于以下问题:C# UruStream.ReadByte方法的具体用法?C# UruStream.ReadByte怎么用?C# UruStream.ReadByte使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MUd.UruStream
的用法示例。
在下文中一共展示了UruStream.ReadByte方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Read
public void Read(UruStream s)
{
fParentIdx = s.ReadUInt();
fChildIdx = s.ReadUInt();
fSaverIdx = s.ReadUInt();
s.ReadByte(); //Seen
}
示例2: Read
public void Read(UruStream s)
{
fType = (EConnType)s.ReadByte();
fSockHeaderSize = s.ReadUShort();
fBuildID = s.ReadUInt();
fBuildType = (NetCliBuildType)s.ReadUInt();
fBranchID = s.ReadUInt();
fProductID = new Guid(s.ReadBytes(16));
}
示例3: NetCliConnect
protected virtual bool NetCliConnect(int g)
{
UruStream s = new UruStream(new NetworkStream(fSocket, false));
//NetCliConnect
ISetupKeys(g);
s.BufferWriter();
s.WriteByte((byte)NetCliConnectMsg.kNetCliConnect);
s.WriteByte(66);
s.WriteBytes(fDhData);
s.FlushWriter();
//Recv NetCliEncrypt
if (s.ReadByte() != (byte)NetCliConnectMsg.kNetCliEncrypt) { fSocket.Close(); return false; }
byte[] seed = s.ReadBytes((int)(s.ReadByte() - 2));
ISetupEncryption(seed);
s.Close();
return true;
}