CreateNewDefinitionFunctionT Delegate

Defines function signature for creating new IChannelDefinition objects.

Definition

Namespace: Gemstone.PhasorProtocols
Assembly: Gemstone.PhasorProtocols (in Gemstone.PhasorProtocols.dll) Version: 1.0.156 -- Release Build+566b4839b04c9b0049b576901a43e8cdb3b7d9ea
public delegate T CreateNewDefinitionFunction<T>(
	IConfigurationCell parent,
	byte[] buffer,
	int startIndex,
	out int parsedLength
)
where T : IChannelDefinition

Parameters

parent  IConfigurationCell
Reference to parent IConfigurationCell.
buffer  Byte
Binary image to parse IChannelDefinition from.
startIndex  Int32
Start index into buffer to begin parsing.
parsedLength  Int32
Returns the total number of bytes parsed from buffer.

Type Parameters

T
Specific IChannelDefinition type of object that the CreateNewDefinitionFunctionT creates.

Return Value

T
New IChannelDefinition object.

See Also