本文整理汇总了C#中NewWDS.Telegram.copy方法的典型用法代码示例。如果您正苦于以下问题:C# Telegram.copy方法的具体用法?C# Telegram.copy怎么用?C# Telegram.copy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NewWDS.Telegram
的用法示例。
在下文中一共展示了Telegram.copy方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: copyTelegram
public static void copyTelegram(Telegram srcTele, ref Telegram dstTele)
{
if (srcTele != null)
{
dstTele = new Telegram(100);
if (dstTele.copy(srcTele) == -1)
{
int numItems = srcTele.data.NumItems;
dstTele = new Telegram((numItems < 0x3e8) ? (numItems * 5) : (numItems * 2));
if (dstTele.copy(srcTele) == -1)
{
GlobalServices.ErrMsg("TelegramTools.copyTelegram()", "FATAL ERROR: erroneous telegram copy implementation, exit WDS!");
Application.Exit();
}
}
}
}
示例2: sendTelegramToMainWin
private int sendTelegramToMainWin(TelegramType teleType, object[] senderInfo)
{
_teleToWin = new Telegram(_teleFromWin.data.Capacity);
_teleToWin.copy(_teleFromWin);
_teleToWin.uniqId = GlobalServices.uniqTelegramId();
_teleToWin.parentUniqId = _teleFromWin.uniqId;
_teleToWin.type = teleType;
_teleToWin.protocol = _teleFromWin.protocol;
_teleToWin.data.NumItems = 0;
_teleToWin.replySize = 0;
_teleToWin.mainWin = _teleFromWin.mainWin;
_teleToWin.portHandler = this;
_teleToWin.appFuncId = _teleFromWin.appFuncId;
_teleToWin.userData = _teleFromWin.userData;
_teleToWin.SenderInfo = senderInfo;
if (senderInfo != null)
{
_teleToWin.UserDataExt.addUserData("SenderInfo", (string) senderInfo[0]);
}
_teleToWin.setNoHeader();
try
{
if (((teleType == TelegramType.SeriesEndOK) || (teleType == TelegramType.SeriesEndERROR)) || (teleType == TelegramType.PortHandlerTerminated))
{
((Form) _mainWin).BeginInvoke(new TelegramReceiver(_mainWin.telegramFromPortHandler), new object[] { _teleToWin });
}
else
{
((Form) _mainWin).Invoke(new TelegramReceiver(_mainWin.telegramFromPortHandler), new object[] { _teleToWin });
}
}
catch (Exception exception)
{
_log.Error("IOPH_DATA: Invoking telegramFromPortHandler 1 failed: (TelegramType = " + teleType.ToString() + ")" + exception.Message);
}
return 0;
}
示例3: saveTelegram
private void saveTelegram(Telegram destTele, Telegram srcTele)
{
if (destTele.copy(srcTele) == -1)
{
int numItems = srcTele.data.NumItems;
destTele = new Telegram((numItems < 0x3e8) ? (numItems * 5) : (numItems * 2));
if (destTele.copy(srcTele) == -1)
{
GlobalServices.ErrMsg("saveTeleFromWin()", "FATAL ERROR: erroneous telegram copy implementation, exit WDS!");
Application.Exit();
}
}
}