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

VerifyMessageSyntax() private method

Verify the message syntax.
private VerifyMessageSyntax ( ) : void
return void
        private void VerifyMessageSyntax()
        {
            // The parser has ensured the field satisfied the format, otherwise can't get the response.
            Site.CaptureRequirement(
                3,
                @"[In Transport] The ROP request buffers and ROP response buffers specified in this protocol [Exchange Access and Operation Permissions Protocol] are sent to and received from the server respectively by using the underlying protocol specified by [MS-OXCROPS] section 2.1.");

            // The parser has ensured the field satisfied the format, otherwise can't get the response.
            Site.CaptureRequirement(
                6,
                @"[In Message Syntax] Unless otherwise noted, the fields specified in this section, which are larger than a single byte, MUST be converted to little-endian order when packed in buffers.");

            // The parser has ensured the field satisfied the format, otherwise can't get the response.
            Site.CaptureRequirement(
                7,
                @"[In Message Syntax] Unless otherwise noted, the fields specified in this section, which are larger than a single byte, MUST be converted from little-endian order when unpacked.");
        }
MS_OXCPERMAdapter