|   | ConfigurationCell3DecodeLengthPrefixedString Method | 
        
        
            Decodes a length-prefixed string. Length size is one byte per IEEE C37.118-2011 specification.
            
        
        Namespace: GSF.PhasorProtocols.IEEEC37_118Assembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static string DecodeLengthPrefixedString(
	byte[] buffer,
	ref int offset
)
Public Shared Function DecodeLengthPrefixedString ( 
	buffer As Byte(),
	ByRef offset As Integer
) As String
public:
static String^ DecodeLengthPrefixedString(
	array<unsigned char>^ buffer, 
	int% offset
)
static member DecodeLengthPrefixedString : 
        buffer : byte[] * 
        offset : int byref -> string GSF.PhasorProtocols.IEEEC37_118.ConfigurationCell3.DecodeLengthPrefixedString = function(buffer, offset);
Parameters
- buffer  Byte
- Source buffer.
- offset  Int32
- Source buffer offset. Value is auto-incremented.
Return Value
StringDecoded string from bytes encoded in 
buffer.
 See Also
See Also