RiakClient.Erlang.OtpInputStream.Read1SkipVersion C# (CSharp) Method

Read1SkipVersion() public method

Read one byte from the stream, skipping the version tag if it's read.
public Read1SkipVersion ( ) : byte
return byte
        public byte Read1SkipVersion()
        {
            byte tag = Read1();
            if (tag == OtpExternal.VersionTag)
            {
                tag = Read1();
            }

            return tag;
        }