Parse() 공개 정적인 메소드

Parse the GetPropList request type response body.
public static Parse ( byte rawData ) : GetPropListResponseBody
rawData byte The raw data of response.
리턴 GetPropListResponseBody
        /// <summary>
        /// This method is used by the client to get a list of all of the properties that have values on an object.
        /// </summary>
        /// <param name="getPropListRequestBody">The GetPropList request type request body.</param>
        /// <returns>The response body of the GetPropList request type.</returns>
        public GetPropListResponseBody GetPropList(GetPropListRequestBody getPropListRequestBody)
        {
            CommonResponse          commonResponse          = this.SendAddressBookRequest(getPropListRequestBody, RequestType.GetPropList);
            GetPropListResponseBody getPropListResponseBody = GetPropListResponseBody.Parse(commonResponse.ResponseBodyRawData);

            this.VerifyGetPropListResponseBody(getPropListResponseBody);

            return(getPropListResponseBody);
        }