Interface ICardChannelStack
Interface for card channel stack, ie card channel that can be used in a card channel stack (ICardChannelLayer).
Inherited Members
Namespace: WSCT.Stack
Assembly: WSCT.dll
Syntax
public interface ICardChannelStack : ICardChannel
Properties
| Improve this Doc View SourceLayers
Accessor to the current ordered list of layers.
Declaration
List<ICardChannelLayer> Layers { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<ICardChannelLayer> |
Methods
| Improve this Doc View SourceAddLayer(ICardChannelLayer)
Adds given layer instance into the stack.
Declaration
void AddLayer(ICardChannelLayer layer)
Parameters
| Type | Name | Description |
|---|---|---|
| ICardChannelLayer | layer | Layer instance to add. |
ReleaseLayer(ICardChannelLayer)
Removes given layer instance from the stack.
Declaration
void ReleaseLayer(ICardChannelLayer layer)
Parameters
| Type | Name | Description |
|---|---|---|
| ICardChannelLayer | layer | Layer instance to remove. |
RequestLayer(ICardChannelLayer, SearchMode)
Requests a layer, relative to given layer.
Declaration
ICardChannelLayer RequestLayer(ICardChannelLayer layer, SearchMode mode)
Parameters
| Type | Name | Description |
|---|---|---|
| ICardChannelLayer | layer | |
| SearchMode | mode | Seek mode. |
Returns
| Type | Description |
|---|---|
| ICardChannelLayer | The requested layer. |