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

GetPropList() public method

This method is used by the client to get a list of all of the properties that have values on an object.
public GetPropList ( GetPropListRequestBody getPropListRequestBody ) : GetPropListResponseBody
getPropListRequestBody GetPropListRequestBody The GetPropList request type request body.
return GetPropListResponseBody
        public GetPropListResponseBody GetPropList(GetPropListRequestBody getPropListRequestBody)
        {
            CommonResponse commonResponse = this.SendAddressBookRequest(getPropListRequestBody, RequestType.GetPropList);
            GetPropListResponseBody getPropListResponseBody = GetPropListResponseBody.Parse(commonResponse.ResponseBodyRawData);
            this.VerifyGetPropListResponseBody(getPropListResponseBody);

            return getPropListResponseBody;
        }
MS_OXCMAPIHTTPAdapter