Issue #32: Added function ChartId

This commit is contained in:
vdemydiuk
2016-11-28 16:03:40 +02:00
parent e333164552
commit 5abfeebc90
6 changed files with 69 additions and 24 deletions
+14
View File
@@ -1710,6 +1710,20 @@ namespace MtApi
}
#endregion
#region Chart Operations
///<summary>
///Returns the ID of the current chart.
///</summary>
///<returns>
/// Value of long type.
///</returns>
public long ChartId()
{
return SendCommand<long>(MtCommandType.ChartId, null);
}
#endregion
#region Private Methods
private MtClient Client
{