Microsoft.Protocols.TestSuites.MS_OXCMAPIHTTP.S02_RequestTypesForAddressBookServerEndpoint.Unbind C# (CSharp) 메소드

Unbind() 개인적인 메소드

Destroy the session between the client and the server.
private Unbind ( ) : void
리턴 void
        private void Unbind()
        {
            UnbindRequestBody unbindRequest = new UnbindRequestBody();
            unbindRequest.Reserved = 0x00000000;
            byte[] auxIn = new byte[] { };
            unbindRequest.AuxiliaryBuffer = auxIn;
            unbindRequest.AuxiliaryBufferSize = (uint)auxIn.Length;
            UnbindResponseBody unbindResponseBody = this.Adapter.Unbind(unbindRequest);
            Site.Assert.AreEqual<uint>((uint)1, unbindResponseBody.ErrorCode, "Unbind method should succeed and the expected value is 1. The return value is {0}.", unbindResponseBody.ErrorCode);
        }