Microsoft.Protocols.TestSuites.MS_OXCPERM.FID.InputValue C# (CSharp) Method

InputValue() public method

Input the value from rawData to structure
public InputValue ( byte rawData, int &count ) : IPropertyInterface
rawData byte The byte array returned from the GetLists
count int The count point to the current digit
return IPropertyInterface
        public IPropertyInterface InputValue(byte[] rawData, ref int count)
        {
            FID value;
            value.fid = (ulong)BitConverter.ToInt64(rawData, count);
            count += 8;
            return value;
        }