Microsoft.Protocols.TestSuites.MS_OXCPERM.MS_OXCPERMAdapter.VerifyReturnValueSuccessForGetPermission C# (CSharp) Method

VerifyReturnValueSuccessForGetPermission() private method

Verify the return value when calling RopGetPermissionsTable is successful.
private VerifyReturnValueSuccessForGetPermission ( uint returnValue ) : void
returnValue uint The return value from the server
return void
        private void VerifyReturnValueSuccessForGetPermission(uint returnValue)
        {
            // Verify MS-OXCPERM requirement: MS-OXCPERM_R28
            Site.CaptureRequirementIfAreEqual<uint>(
                UINT32SUCCESS,
                returnValue,
                28,
                @"[In RopGetPermissionsTable ROP Response Buffer] ReturnValue (4 bytes): The value 0x00000000 indicates success.");
        }
MS_OXCPERMAdapter