/// <summary>
        /// Verify RopRegisterNotification Response
        /// </summary>
        /// <param name="ropRegisterNotificationResponse">The response of RopRegisterNotification request</param>
        /// <param name="outputHandleIndex">The field of OutputHandleIndex in RopRegisterNotification request</param>
        private void VerifyRopRegisterNotificationResponse(RopRegisterNotificationResponse ropRegisterNotificationResponse, byte outputHandleIndex)
        {
            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCROPS_R4346");

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

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

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R4348
            Site.CaptureRequirementIfAreEqual<byte>(
                (byte)RopId.RopRegisterNotification,
                ropRegisterNotificationResponse.RopId,
                4348,
                @"[In RopRegisterNotification ROP Response Buffer, RopId (1 byte):] For this operation[RopRegisterNotification] this field is set to 0x29.");

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

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

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

            // Verify MS-OXCROPS requirement: MS-OXCROPS_R4350
            Site.CaptureRequirementIfAreEqual<byte>(
                outputHandleIndex,
                ropRegisterNotificationResponse.OutputHandleIndex,
                4350,
                @"[In RopRegisterNotification 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_R4352");

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