Microsoft.Protocols.TestSuites.MS_ASCNTC.MS_ASCNTCAdapter.VerifyMessageSyntax C# (CSharp) Method

VerifyMessageSyntax() private method

This method is used to verify the message syntax related requirement.
private VerifyMessageSyntax ( ) : void
return void
        private void VerifyMessageSyntax()
        {
            // If the validation is successful, then MS-ASCNTC_R4 can be captured.
            // Add the debug information
            Site.Log.Add(LogEntryKind.Debug, "Verify MS-ASCNTC_R4");

            // Verify MS-ASCNTC requirement: MS-ASCNTC_R4
            Site.CaptureRequirementIfIsTrue(
                this.activeSyncClient.ValidationResult,
                4,
                @"[In Message Syntax] The markup that is used by this protocol MUST be well-formed XML, as specified in [XML].");
        }
        #endregion