Interface IBasketSecurityProcessorProvider
Интерфейс провайдера IBasketSecurityProcessor.
Namespace: StockSharp.Messages
Assembly: StockSharp.Messages.dll
Syntax
public interface IBasketSecurityProcessorProvider
Methods
GetProcessorType(String)
Получить тип обработчика.
Declaration
Type GetProcessorType(string basketCode)
Parameters
Type | Name | Description |
---|---|---|
String | basketCode | Тип корзины инструментов. |
Returns
Type | Description |
---|---|
Type | Тип обработчика. |
GetSecurityType(String)
Получить тип инструмента.
Declaration
Type GetSecurityType(string basketCode)
Parameters
Type | Name | Description |
---|---|---|
String | basketCode | Тип корзины инструментов. |
Returns
Type | Description |
---|---|
Type | Security type. |
Register(String, Type, Type)
Зарегистрировать новый тип инструмента.
Declaration
void Register(string basketCode, Type processorType, Type securityType)
Parameters
Type | Name | Description |
---|---|---|
String | basketCode | Тип корзины инструментов. |
Type | processorType | Тип обработчика. |
Type | securityType | Security type. |
UnRegister(String)
Удалить тип инструмента.
Declaration
void UnRegister(string basketCode)
Parameters
Type | Name | Description |
---|---|---|
String | basketCode | Тип корзины инструментов. |