/// <summary>
        /// Verify RopSynchronizationGetTransferState Response
        /// </summary>
        /// <param name="ropSynchronizationGetTransferStateResponse">The response of RopSynchronizationGetTransferState request</param>
        /// <param name="outputHandleIndex">The field of OutputHandleIndex in RopSynchronizationGetTransferState request</param>
        private void VerifyRopSynchronizationGetTransferStateResponse(RopSynchronizationGetTransferStateResponse ropSynchronizationGetTransferStateResponse, byte outputHandleIndex)
        {
            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R4181");

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

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

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R4183
            Site.CaptureRequirementIfAreEqual<byte>(
                (byte)RopId.RopSynchronizationGetTransferState,
                ropSynchronizationGetTransferStateResponse.RopId,
                4183,
                @"[In RopSynchronizationGetTransferState ROP Response Buffer, RopId (1 byte):] For this operation[RopSynchronizationGetTransferState] this field is set to 0x82.");

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

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R4184
            Site.CaptureRequirementIfAreEqual<Type>(
                typeof(byte),
                ropSynchronizationGetTransferStateResponse.OutputHandleIndex.GetType(),
                4184,
                @"[In RopSynchronizationGetTransferState ROP Response Buffer]OutputHandleIndex (1 byte): An unsigned integer.");

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

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R4185
            Site.CaptureRequirementIfAreEqual<byte>(
                outputHandleIndex,
                ropSynchronizationGetTransferStateResponse.OutputHandleIndex,
                4185,
                @"[In RopSynchronizationGetTransferState ROP Response Buffer, OutputHandleIndex (1 byte):]This index MUST be set to the value specified in the OutputHandleIndex field in the request.");

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

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