/// <summary>
        /// Verify RopSeekRowFractional Response
        /// </summary>
        /// <param name="ropSeekRowFractionalResponse">The response of RopSeekRowFractional request</param>
        /// <param name="inputHandleIndex">The field of InputHandleIndex in RopSeekRowFractional request</param>
        private void VerifyRopSeekRowFractionalResponse(RopSeekRowFractionalResponse ropSeekRowFractionalResponse, byte inputHandleIndex)
        {
            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R1376");

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R1376
            Site.CaptureRequirementIfAreEqual<Type>(
                typeof(byte),
                ropSeekRowFractionalResponse.RopId.GetType(),
                1376,
                @"[In RopSeekRowFractional ROP Response Buffer] RopId (1 byte): An unsigned integer.");

            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R1378");

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R1378
            Site.CaptureRequirementIfAreEqual<byte>(
                (byte)RopId.RopSeekRowFractional,
                ropSeekRowFractionalResponse.RopId,
                1378,
                @"[In RopSeekRowFractional ROP Response Buffer] RopId (1 byte): For this operation[RopSeekRowFractional], this field[RopId (1 byte)] is set to 0x1A.");

            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R1379");

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R1379
            Site.CaptureRequirementIfAreEqual<Type>(
                typeof(byte),
                ropSeekRowFractionalResponse.InputHandleIndex.GetType(),
                1379,
                @"[In RopSeekRowFractional ROP Response Buffer] InputHandleIndex (1 byte): An unsigned integer.");

            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R1380");

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R1380
            Site.CaptureRequirementIfAreEqual<byte>(
                inputHandleIndex,
                ropSeekRowFractionalResponse.InputHandleIndex,
                1380,
                @"[In RopSeekRowFractional ROP Response Buffer] InputHandleIndex (1 byte): This index[InputHandleIndex] MUST be set to the value specified in the InputHandleIndex field in the request.");

            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R1381");

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R1381
            Site.CaptureRequirementIfAreEqual<Type>(
                typeof(uint),
                ropSeekRowFractionalResponse.ReturnValue.GetType(),
                1381,
                @"[In RopSeekRowFractional ROP Response Buffer] ReturnValue (4 bytes): An unsigned integer.");
        }