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

GetSpecialTable() public method

This method is used by the client to get a special table, which can be either an address book hierarchy table or an address creation table.
public GetSpecialTable ( GetSpecialTableRequestBody getSpecialTableRequestBody ) : GetSpecialTableResponseBody
getSpecialTableRequestBody GetSpecialTableRequestBody The GetSpecialTable request type request body.
return GetSpecialTableResponseBody
        public GetSpecialTableResponseBody GetSpecialTable(GetSpecialTableRequestBody getSpecialTableRequestBody)
        {
            CommonResponse commonResponse = this.SendAddressBookRequest(getSpecialTableRequestBody, RequestType.GetSpecialTable);
            GetSpecialTableResponseBody getSpecialTableResponseBody = GetSpecialTableResponseBody.Parse(commonResponse.ResponseBodyRawData);
            this.VerifyGetSpecialTableResponseBody(getSpecialTableResponseBody);

            return getSpecialTableResponseBody;
        }
MS_OXCMAPIHTTPAdapter