Microsoft.Protocols.TestSuites.MS_OXCMAPIHTTP.MS_OXCMAPIHTTPAdapter.VerifyConnectResponse C# (CSharp) Method

VerifyConnectResponse() private method

Verify the Connect response related requirements.
private VerifyConnectResponse ( HttpWebResponse httpWebResponse ) : void
httpWebResponse System.Net.HttpWebResponse The HttpWebResponse to be verified.
return void
        private void VerifyConnectResponse(HttpWebResponse httpWebResponse)
        {
            // Add the debug information
            this.Site.Log.Add(LogEntryKind.Debug, "Verify MS-OXCMAPIHTTP_R1218");

            // Verify MS-OXCMAPIHTTP requirement: MS-OXCMAPIHTTP_R1218
            // If the http web response is not null, that means the server issues a response to a connect request type.
            this.Site.CaptureRequirementIfIsNotNull(
                httpWebResponse,
                1218,
                @"[In Responding to a Connect or Bind Request Type Request] The server issues a response, as specified in section 2.2.2.2, to a Connect request type request, as specified in section 2.2.4.1.1.");
        }
        #endregion
MS_OXCMAPIHTTPAdapter