Add an application to the given container.
Add an application to the given container.

Namespace: StreamBase.SB.Client
Assembly: StreamBase.SB.Client (in StreamBase.SB.Client.dll) Version: 7.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void AddContainer(
	string sContainerName,
	byte[] application,
	List<string> lstContainerStreamMappings
)
Public Sub AddContainer ( _
	sContainerName As String, _
	application As Byte(), _
	lstContainerStreamMappings As List(Of String) _
)
public:
void AddContainer(
	String^ sContainerName, 
	array<unsigned char>^ application, 
	List<String^>^ lstContainerStreamMappings
)

Parameters

sContainerName
String
the name of the container to which to add thisthe name of the container to which to add this
application
array<Byte>[]()[][]
Contents of the application -- text EventFlow or StreamSQL, or binary contents of a .sbar fileContents of the application -- text EventFlow or StreamSQL, or binary contents of a .sbar file
lstContainerStreamMappings
List<(Of <(<'String>)>)>
String mappings between container streams. Each member of the list should contain a mapping. For example: newContainer.newStream=oldContainer.oldStreamString mappings between container streams. Each member of the list should contain a mapping. For example: newContainer.newStream=oldContainer.oldStream

Exceptions

ExceptionCondition
StreamBase.SB..::..StreamBaseExceptionthrown on typecheck and other error
StreamBase.SB..::..StreamBaseExceptionthrown on typecheck and other error

See Also