Microsoft.Protocols.TestSuites.MS_MEETS.MS_MEETSAdapter.VerifyAddMeetingComplexType C# (CSharp) Method

VerifyAddMeetingComplexType() private method

Verifies AddMeeting complex type.
private VerifyAddMeetingComplexType ( bool isResponseValid ) : void
isResponseValid bool Whether the server response is valid.
return void
        private void VerifyAddMeetingComplexType(bool isResponseValid)
        {
            // Verifies MS-MEETS requirement: MS-MEETS_R23
            Site.CaptureRequirementIfIsTrue(
                isResponseValid,
                23,
            @"[In AddMeeting]This type [AddMeeting]is defined as follows. 
                <s:complexType name=""AddMeeting"">
                  <s:attribute name=""Url"" type=""s:string""/>
                  <s:attribute name=""HostTitle"" type=""s:string""/>
                  <s:attribute name=""UniquePermissions"" type=""s:boolean""/>
                  <s:attribute name=""MeetingCount"" type=""s:int""/>
                  <s:attribute name=""AnonymousAccess"" type=""s:boolean""/>
                  <s:attribute name=""AllowAuthenticatedUsers"" type=""s:boolean""/>
                </s:complexType>");
        }