/// <summary>
        /// Verify RopSetLocalReplicaMidsetDeleted Response
        /// </summary>
        /// <param name="ropSetLocalReplicaMidsetDeletedResponse">The response of RopSetLocalReplicaMidsetDeleted request</param>
        /// <param name="inputHandleIndex">The field of InputHandleIndex in RopSetLocalReplicaMidsetDeleted request</param>
        private void VerifyRopSetLocalReplicaMidsetDeletedResponse(RopSetLocalReplicaMidsetDeletedResponse ropSetLocalReplicaMidsetDeletedResponse, byte inputHandleIndex)
        {
            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R4276");

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

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

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R4278
            Site.CaptureRequirementIfAreEqual<byte>(
                (byte)RopId.RopSetLocalReplicaMidsetDeleted,
                ropSetLocalReplicaMidsetDeletedResponse.RopId,
                4278,
                @"[In RopSetLocalReplicaMidsetDeleted ROP Response Buffer, RopId (1 byte):] For this operation[RopSetLocalReplicaMidsetDeleted] this field is set to 0x93.");

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

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

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

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R4280
            Site.CaptureRequirementIfAreEqual<byte>(
                inputHandleIndex,
                ropSetLocalReplicaMidsetDeletedResponse.InputHandleIndex,
                4280,
                @"[In RopSetLocalReplicaMidsetDeleted ROP Response Buffer, InputHandleIndex (1 byte):] This index 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_R4282");

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