Skip to content

Commit ddf3d4d

Browse files
committed
Doc fix.
1 parent 584ce51 commit ddf3d4d

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

Documentation/en/Topics/HydraSecurityExtensionInfo.aml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<token>hydra</token> and get the existing data in the storage or write new ones.
88
Enabling the <token>hydra</token> server mode is described in the <link xlink:href="7d845e99-6bde-437e-b7f4-059be0438894" /> item.</para>
99
<para>To connect to <token>hydra</token> through WCF there is the
10-
<codeEntityReference qualifyHint="false">T:StockSharp.Algo.History.Hydra.RemoteStorageClient</codeEntityReference> class in <token>stocksharpapi</token>:</para>
10+
<codeEntityReference qualifyHint="false">T:StockSharp.Algo.Storages.Remote.RemoteStorageClient</codeEntityReference> class in <token>stocksharpapi</token>:</para>
1111
<code language="C#" title="C#"><![CDATA[
1212
...
1313
var client = new RemoteStorageClient(new InMemoryExchangeInfoProvider(), new Uri("net.tcp://localhost:8000"))

Documentation/en/Topics/Messages_adapters.aml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ private void ProcessSecurityLookupMessage(SecurityLookupMessage message)
374374
<para>
375375
In the <legacyBold>IBSocket.NewPortfolio</legacyBold> event handler, the received portfolio information must
376376
be converted to the incoming <codeEntityReference>T:StockSharp.Messages.PortfolioMessage</codeEntityReference>.
377-
message. And after receiving all the portfolios, you need to send the incoming
378-
<codeEntityReference>T:StockSharp.Messages.PortfolioLookupResultMessage</codeEntityReference> message.
377+
message. And after receiving all the portfolios, you need to send the
378+
<codeEntityReference>T:StockSharp.Messages.SubscriptionFinishedMessage</codeEntityReference> message.
379379
Note that in the latter case, the <codeEntityReference>P:StockSharp.Messages.BaseResultMessage`1.OriginalTransactionId</codeEntityReference>
380380
property must be set to the <legacyBold>TransactionId</legacyBold> value of the corresponding outgoing message.
381381
</para>
@@ -393,7 +393,7 @@ private void IBSocket_NewPortfolio(int row, int nrows, string portfolioName, str
393393
if ((row + 1) < nrows)
394394
return;
395395
396-
SendOutMessage(new PortfolioLookupResultMessage { OriginalTransactionId = _lookupPortfoliosId });
396+
SendOutMessage(new SubscriptionFinishedMessage { OriginalTransactionId = _lookupPortfoliosId });
397397
_lookupPortfoliosId = 0;
398398
}
399399
]]>
@@ -409,7 +409,7 @@ private void IBSocket_NewPortfolio(int row, int nrows, string portfolioName, str
409409
In the <legacyBold>IBSocket.NewSymbol</legacyBold> event handler, the received information about the instrument
410410
must be converted to the incoming <codeEntityReference>T:StockSharp.Messages.SecurityMessage</codeEntityReference> message.
411411
And after receiving all the instruments, you need to send the incoming message
412-
<codeEntityReference>T:StockSharp.Messages.SecurityLookupResultMessage</codeEntityReference>.
412+
<codeEntityReference>T:StockSharp.Messages.SubscriptionFinishedMessage</codeEntityReference>.
413413
Note that the <legacyBold>OriginalTransactionId</legacyBold> property of both incoming messages must be
414414
set to the <legacyBold>TransactionId</legacyBold> value of the corresponding outgoing message.
415415
</para>

Documentation/en/Topics/Messages_description.aml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
<para><codeEntityReference>T:StockSharp.Messages.PortfolioLookupMessage</codeEntityReference></para>
144144
</entry>
145145
<entry>
146-
<para>Requests portfolio information according to the given criteria. The request result returns by means of the <codeEntityReference>T:StockSharp.Messages.PortfolioLookupResultMessage</codeEntityReference> message.</para>
146+
<para>Requests portfolio information according to the given criteria. The request result returns by means of the <codeEntityReference>T:StockSharp.Messages.PortfolioMessage</codeEntityReference> message.</para>
147147
</entry>
148148
</row>
149149

@@ -190,7 +190,7 @@
190190
</entry>
191191
<entry>
192192
<para>Requests list of instruments according to the given criteria. The request result returns by means of the
193-
<codeEntityReference>T:StockSharp.Messages.SecurityLookupResultMessage</codeEntityReference>.</para>
193+
<codeEntityReference>T:StockSharp.Messages.SecurityMessage</codeEntityReference>.</para>
194194
</entry>
195195
</row>
196196

Documentation/en/Topics/hydraAPIConnectWCF.aml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
The activation of the <token>hydra</token> server mode is described in the
99
<link xlink:href="7d845e99-6bde-437e-b7f4-059be0438894" /> item.</para>
1010
<para>To connect to <token>hydra</token> through WCF there is the
11-
<codeEntityReference qualifyHint="false">T:StockSharp.Algo.History.Hydra.RemoteStorageClient</codeEntityReference> class in <token>stocksharpapi</token>.</para>
11+
<codeEntityReference qualifyHint="false">T:StockSharp.Algo.Storages.Remote.RemoteStorageClient</codeEntityReference> class in <token>stocksharpapi</token>.</para>
1212
<code language="C#" title="C#"><![CDATA[
1313
...
1414
var client = new RemoteStorageClient(new InMemoryExchangeInfoProvider(), new Uri("net.tcp://localhost:8000"))

Documentation/ru/Topics/Messages_adapters.aml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ private void ProcessSecurityLookupMessage(SecurityLookupMessage message)
408408
<para>
409409
В обработчике события <legacyBold>StServer.AddPortfolio</legacyBold> полученную информацию о портфеле
410410
необходимо преобразовать во входящее сообщение <codeEntityReference>T:StockSharp.Messages.PortfolioMessage</codeEntityReference>.
411-
А после получения всех портфелей необходимо послать входящее сообщение
412-
<codeEntityReference>T:StockSharp.Messages.PortfolioLookupResultMessage</codeEntityReference>.
411+
А после получения всех портфелей необходимо послать сообщение
412+
<codeEntityReference>T:StockSharp.Messages.SubscriptionFinishedMessage</codeEntityReference>.
413413
Обратите внимание, что в последнем случае свойству
414414
<codeEntityReference>P:StockSharp.Messages.BaseResultMessage`1.OriginalTransactionId</codeEntityReference> нужно
415415
присвоить значение <legacyBold>TransactionId</legacyBold> соответствующего исходящего сообщения.
@@ -427,7 +427,7 @@ private void smartCom_AddPortfolio(int row, int nrows, string portfolioName, str
427427
if ((row + 1) < nrows)
428428
return;
429429
430-
SendOutMessage(new PortfolioLookupResultMessage { OriginalTransactionId = _lookupPortfoliosId });
430+
SendOutMessage(new SubscriptionFinishedMessage { OriginalTransactionId = _lookupPortfoliosId });
431431
_lookupPortfoliosId = 0;
432432
}
433433
]]>
@@ -442,8 +442,8 @@ private void smartCom_AddPortfolio(int row, int nrows, string portfolioName, str
442442
<para>
443443
В обработчике события <legacyBold>StServer.AddSymbol</legacyBold> полученную информацию об инструменте
444444
необходимо преобразовать во входящее сообщение <codeEntityReference>T:StockSharp.Messages.SecurityMessage</codeEntityReference>.
445-
А после получения всех инструментов необходимо послать входящее сообщение
446-
<codeEntityReference>T:StockSharp.Messages.SecurityLookupResultMessage</codeEntityReference>.
445+
А после получения всех инструментов необходимо послать сообщение
446+
<codeEntityReference>T:StockSharp.Messages.SubscriptionFinishedMessage</codeEntityReference>.
447447
Обратите внимание, что свойству <legacyBold>OriginalTransactionId</legacyBold> обоих входящих сообщений нужно
448448
присвоить значение <legacyBold>TransactionId</legacyBold> соответствующего исходящего сообщения.
449449
</para>
@@ -550,7 +550,7 @@ private void smartCom_AddSymbol(int row, int rowCount, string smartId, string na
550550
if ((row + 1) < rowCount)
551551
return;
552552
553-
SendOutMessage(new SecurityLookupResultMessage { OriginalTransactionId = _lookupSecuritiesId });
553+
SendOutMessage(new SubscriptionFinishedMessage { OriginalTransactionId = _lookupSecuritiesId });
554554
_lookupSecuritiesId = 0;
555555
}
556556
]]>

Documentation/ru/Topics/Messages_description.aml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<para><codeEntityReference>T:StockSharp.Messages.PortfolioLookupMessage</codeEntityReference></para>
143143
</entry>
144144
<entry>
145-
<para>Запрашивает информацию о портфелях по заданному критерию. Результат запроса возвращается при помощи сообщения <codeEntityReference>T:StockSharp.Messages.PortfolioLookupResultMessage</codeEntityReference>.</para>
145+
<para>Запрашивает информацию о портфелях по заданному критерию. Результат запроса возвращается при помощи сообщения <codeEntityReference>T:StockSharp.Messages.PortfolioMessage</codeEntityReference>.</para>
146146
</entry>
147147
</row>
148148

@@ -189,7 +189,7 @@
189189
</entry>
190190
<entry>
191191
<para>Запрашивает список инструментов по заданному критерию. Результат запроса будет возвращен при помощи сообщения
192-
<codeEntityReference>T:StockSharp.Messages.SecurityLookupResultMessage</codeEntityReference>.</para>
192+
<codeEntityReference>T:StockSharp.Messages.SecurityMessage</codeEntityReference>.</para>
193193
</entry>
194194
</row>
195195

0 commit comments

Comments
 (0)