1 Star 0 Fork 1

jufeng9318/StockSharp

forked from yu3a/StockSharp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
OrderPairReplaceMessage.cs 1.94 KB
一键复制 编辑 原始数据 按行查看 历史
StockSharp Dev1 提交于 2020-04-04 02:21 +08:00 . StringHelper. SplitBySep, JoinComma etc.
#region S# License
/******************************************************************************************
NOTICE!!! This program and source code is owned and licensed by
StockSharp, LLC, www.stocksharp.com
Viewing or use of this code requires your acceptance of the license
agreement found at https://github.com/StockSharp/StockSharp/blob/master/LICENSE
Removal of this comment is a violation of the license agreement.
Project: StockSharp.Messages.Messages
File: OrderPairReplaceMessage.cs
Created: 2015, 11, 11, 2:32 PM
Copyright 2010 by StockSharp, LLC
*******************************************************************************************/
#endregion S# License
namespace StockSharp.Messages
{
using System;
using System.Runtime.Serialization;
using Ecng.Common;
/// <summary>
/// The message containing the information for modify order's pair.
/// </summary>
[DataContract]
[Serializable]
public class OrderPairReplaceMessage : Message
{
/// <summary>
/// The message containing the information for modify the first order.
/// </summary>
[DataMember]
public OrderReplaceMessage Message1 { get; set; }
/// <summary>
/// The message containing the information for modify the second order.
/// </summary>
[DataMember]
public OrderReplaceMessage Message2 { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="OrderPairReplaceMessage"/>.
/// </summary>
public OrderPairReplaceMessage()
: base(MessageTypes.OrderPairReplace)
{
}
/// <summary>
/// Create a copy of <see cref="OrderPairReplaceMessage"/>.
/// </summary>
/// <returns>Copy.</returns>
public override Message Clone()
{
var clone = new OrderPairReplaceMessage
{
Message1 = Message1?.TypedClone(),
Message2 = Message2?.TypedClone(),
};
CopyTo(clone);
return clone;
}
/// <inheritdoc />
public override string ToString()
{
return base.ToString() + $",Msg1={Message1},Msg2={Message2}";
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/jufeng9318/StockSharp.git
git@gitee.com:jufeng9318/StockSharp.git
jufeng9318
StockSharp
StockSharp
master

搜索帮助