Skip to content

Commit 01178bc

Browse files
committed
Loc fixes.
1 parent 6716a70 commit 01178bc

File tree

6 files changed

+113
-71
lines changed

6 files changed

+113
-71
lines changed

Algo/Connector_ProcessMessage.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1251,8 +1251,11 @@ private void ProcessLevel1ChangeMessage(Level1ChangeMessage message)
12511251
}
12521252

12531253
/// <summary>
1254-
/// To get the portfolio by the name. If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1254+
/// To get the portfolio by the name.
12551255
/// </summary>
1256+
/// <remarks>
1257+
/// If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1258+
/// </remarks>
12561259
/// <param name="name">Portfolio name.</param>
12571260
/// <returns>Portfolio.</returns>
12581261
public Portfolio GetPortfolio(string name)
@@ -1261,8 +1264,11 @@ public Portfolio GetPortfolio(string name)
12611264
}
12621265

12631266
/// <summary>
1264-
/// To get the portfolio by the name. If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1267+
/// To get the portfolio by the name.
12651268
/// </summary>
1269+
/// <remarks>
1270+
/// If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1271+
/// </remarks>
12661272
/// <param name="name">Portfolio name.</param>
12671273
/// <param name="changePortfolio">Portfolio handler.</param>
12681274
/// <returns>Portfolio.</returns>

BusinessEntities/IPortfolioProvider.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ namespace StockSharp.BusinessEntities
2424
public interface IPortfolioProvider
2525
{
2626
/// <summary>
27-
/// Load portfolio by name.
27+
/// To get the portfolio by the name.
2828
/// </summary>
29-
/// <param name="portfolioName">Portfolio code name.</param>
29+
/// <param name="name">Portfolio name.</param>
3030
/// <returns>Portfolio.</returns>
31-
Portfolio GetPortfolio(string portfolioName);
31+
Portfolio GetPortfolio(string name);
3232

3333
/// <summary>
3434
/// Get all portfolios.

0 commit comments

Comments
 (0)