We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b62c978 commit 83eabaaCopy full SHA for 83eabaa
1 file changed
BusinessEntities/EntitiesExtensions.cs
@@ -212,6 +212,13 @@ public static IEnumerable<ExchangeBoard> EnumerateExchangeBoards()
212
.GetMembers<PropertyInfo>(_publicStatic, typeof(ExchangeBoard))
213
.Select(prop => (ExchangeBoard)prop.GetValue(null, null));
214
215
+ /// <summary>
216
+ /// All registered candle message types.
217
+ /// </summary>
218
+ [Obsolete("Use Extensions.AllCandleTypes property.")]
219
+ public static IEnumerable<Type> AllCandleMessageTypes
220
+ => Messages.Extensions.AllCandleTypes;
221
+
222
/// <summary>
223
/// To convert the own trade into message.
224
/// </summary>
0 commit comments