J2534DotNet.PassThruMsg.ToString C# (CSharp) Method

ToString() public method

public ToString ( string tab ) : string
tab string
return string
        public string ToString(string tab)
        {
            return
                string.Format(
                    "{6}{5}Protocol: {0}{6}{5}RxStatus: {1}{6}{5}Timestamp: {2}{6}{5}ExtraDataIndex: {3}{6}{5}Data: {4}",
                    ProtocolID,
                    RxStatus,
                    Timestamp,
                    ExtraDataIndex,
                    BitConverter.ToString(GetBytes()),
                    tab,
                    Environment.NewLine);
        }