本文整理汇总了C#中System.IO.MemoryStream.ReadVariable方法的典型用法代码示例。如果您正苦于以下问题:C# MemoryStream.ReadVariable方法的具体用法?C# MemoryStream.ReadVariable怎么用?C# MemoryStream.ReadVariable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.IO.MemoryStream
的用法示例。
在下文中一共展示了MemoryStream.ReadVariable方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case ObjectAddressTag:
if (!pStream.ReadPackable(mObjectAddress)) return false;
break;
case StatusTag:
if (!pStream.ReadVariable(out mStatus)) return false;
break;
case ServiceHashTag:
if (!pStream.ReadVariable(out mServiceHash)) return false;
break;
case MethodIdTag:
if (!pStream.ReadVariable(out mMethodId)) return false;
break;
default: return false;
}
}
return true;
}
示例2: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case ErrorCodeTag:
if (!pStream.ReadVariable(out mErrorCode)) return false;
break;
case AccountTag:
mHasAccount = true;
if (!pStream.ReadPackable(mAccount)) return false;
break;
case GameAccountTag:
{
EntityId entityId = new EntityId();
if (!pStream.ReadPackable(entityId)) return false;
mGameAccounts.Add(entityId);
break;
}
default: return false;
}
}
return true;
}
示例3: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case LabelTag:
if (!pStream.ReadVariable(out mLabel)) return false;
break;
case EpochTag:
if (!pStream.ReadVariable(out mEpoch)) return false;
break;
default: return false;
}
}
return true;
}
示例4: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case HashTag:
if (!pStream.ReadFixed32(out mHash)) return false;
break;
case IdTag:
if (!pStream.ReadVariable(out mId)) return false;
break;
default: return false;
}
}
return true;
}
示例5: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case HostTag:
if (!pStream.ReadPackable(mHost)) return false;
break;
case ObjectIdTag:
mHasObjectId = true;
if (!pStream.ReadVariable(out mObjectId)) return false;
break;
default: return false;
}
}
return true;
}
示例6: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case ServiceIdTag:
if (!pStream.ReadVariable(out mServiceId)) return false;
break;
case MethodIdTag:
mHasMethodId = true;
if (!pStream.ReadVariable(out mMethodId)) return false;
break;
case TokenTag:
if (!pStream.ReadVariable(out mToken)) return false;
break;
case ObjectIdTag:
mHasObjectId = true;
if (!pStream.ReadVariable(out mObjectId)) return false;
break;
case SizeTag:
mHasSize = true;
if (!pStream.ReadVariable(out mSize)) return false;
break;
case StatusTag:
mHasStatus = true;
if (!pStream.ReadVariable(out mStatus)) return false;
break;
case ErrorTag:
{
ErrorInfo errorInfo = new ErrorInfo();
if (!pStream.ReadPackable(errorInfo)) return false;
mErrors.Add(errorInfo);
break;
}
default: return false;
}
}
return true;
}
示例7: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case ServerIdTag:
if (!pStream.ReadPackable(mServerId)) return false;
break;
case ClientIdTag:
mHasClientId = true;
if (!pStream.ReadPackable(mClientId)) return false;
break;
case BindResultTag:
mHasBindResult = true;
if (!pStream.ReadVariable(out mBindResult)) return false;
break;
case BindResponseTag:
mHasBindResponse = true;
if (!pStream.ReadPackable(mBindResponse)) return false;
break;
case ConnectionMeteringContentHandlesTag:
mHasConnectionMeteringContentHandles = true;
if (!pStream.ReadPackable(mConnectionMeteringContentHandles)) return false;
break;
default: return false;
}
}
return true;
}
示例8: Read
public bool Read(MemoryStream pStream)
{
EMessageKeyType type = EMessageKeyType.Variable;
uint tag = 0;
while (pStream.ReadKey(out type, out tag))
{
switch (tag)
{
case ProgramTag:
mHasProgram = true;
if (!pStream.ReadPrefixed(Encoding.GetEncoding(1252), out mProgram)) return false;
break;
case PlatformTag:
mHasPlatform = true;
if (!pStream.ReadPrefixed(Encoding.GetEncoding(1252), out mPlatform)) return false;
break;
case LocaleTag:
mHasLocale = true;
if (!pStream.ReadPrefixed(Encoding.GetEncoding(1252), out mLocale)) return false;
break;
case EmailTag:
mHasEmail = true;
if (!pStream.ReadPrefixed(Encoding.GetEncoding(1252), out mEmail)) return false;
break;
case VersionTag:
mHasVersion = true;
if (!pStream.ReadPrefixed(Encoding.GetEncoding(1252), out mVersion)) return false;
break;
case ApplicationVersionTag:
mHasApplicationVersion = true;
if (!pStream.ReadVariable(out mApplicationVersion)) return false;
break;
case CookieOnlyTag:
{
uint cookieOnly = 0;
mHasCookieOnly = true;
if (!pStream.ReadVariable(out cookieOnly)) return false;
mCookieOnly = Convert.ToBoolean(cookieOnly);
break;
}
case UnknownTag:
mHasUnknown = true;
pStream.ReadFixed32(out mUnknown);
break;
default: return false;
}
}
return true;
}