Microsoft.Protocols.TestSuites.MS_OXORULE.MS_OXORULEAdapter.VerifyMAPITransport C# (CSharp) Method

VerifyMAPITransport() private method

Verify MAPIHTTP transport.
private VerifyMAPITransport ( ) : void
return void
        private void VerifyMAPITransport()
        {
            if (Common.GetConfigurationPropertyValue("TransportSeq", this.Site).ToLower(System.Globalization.CultureInfo.CurrentCulture) == "mapi_http" && Common.IsRequirementEnabled(933, this.Site))
            {
                // Add the debug information
                Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXORULE_R933");

                // Verify requirement MS-OXORULE_R933
                // If the transport sequence is MAPIHTTP and the code can reach here, it means that the implementation does support MAPIHTTP transport.
                Site.CaptureRequirement(
                    933,
                    @"[In Appendix A: Product Behavior] Implementation does support this specification [MS-OXCMAPIHTTP]. (Exchange Server 2013 Service Pack 1 (SP1) follows this behavior.)");
            }
        }