Recurity.Swf.SwfEncodedU32.SwfReadEncodedU32 C# (CSharp) Method

SwfReadEncodedU32() public static method

Reads an ulong value encoded as EncodedU32 from stream
public static SwfReadEncodedU32 ( BinaryReader source ) : ulong
source System.IO.BinaryReader Stream to read the data
return ulong
        public static ulong SwfReadEncodedU32(BinaryReader source)
        {
            byte[] encodedData = SwfReadEncodedU32Data(source);
            return SwfDecodeU32(encodedData);
        }