The CreateAfterFromBitStream method creates as the next sibling a new NBElement and its hierarchy which is populated using the given BitStream and Parser.
Namespace: IBM.Broker.PluginAssembly: IBM.Broker.Plugin (in IBM.Broker.Plugin.dll) Version: 9.0.0.0
public NBElement CreateAfterFromBitStream(
byte[] bitStream,
string parserName
)
public NBElement CreateAfterFromBitStream(
byte[] bitStream,
string parserName
)
Public Function CreateAfterFromBitStream (
bitStream As Byte(),
parserName As String
) As NBElement
Public Function CreateAfterFromBitStream (
bitStream As Byte(),
parserName As String
) As NBElement
public:
NBElement^ CreateAfterFromBitStream(
array<unsigned char>^ bitStream,
String^ parserName
)
public:
NBElement^ CreateAfterFromBitStream(
array<unsigned char>^ bitStream,
String^ parserName
)
member CreateAfterFromBitStream :
bitStream : byte[] *
parserName : string -> NBElement
member CreateAfterFromBitStream :
bitStream : byte[] *
parserName : string -> NBElement
Parameters
- bitStream
- Type:
System Byte
The bit stream to be parsed and added to the element tree.
- parserName
- Type:
System String
The name of the parser class to use to parse the bit stream. The same parser must be used to parse the whole bit stream.
Return Value
Type:
NBElementThe NBElement which is created.