Sfm2Xml.ByteReader.GetLookAheadSfmMarkerAndData C# (CSharp) Method

GetLookAheadSfmMarkerAndData() public method

Return the next sfm marker and its data for view.
public GetLookAheadSfmMarkerAndData ( string &sfmMarker, byte &sfmData, byte &sfmBadBytes ) : bool
sfmMarker string
sfmData byte
sfmBadBytes byte
return bool
		public bool GetLookAheadSfmMarkerAndData(out string sfmMarker, out byte[] sfmData, out byte[] sfmBadBytes)
		{
			sfmMarker = m_sfmLookAheadMarker;
			sfmData = m_sfmLookAheadData;
			sfmBadBytes = m_sfmLookAheadMarkerBadBytes;
			return m_hasLookAhead;
		}