Parse() public static méthode

Parse the ResortRestriction request type response body.
public static Parse ( byte rawData ) : ResortRestrictionResponseBody
rawData byte The raw data of response.
Résultat ResortRestrictionResponseBody
        /// <summary>
        /// This method is used by the client to sort the objects in the restricted address book container.
        /// </summary>
        /// <param name="resortRestrictionRequestBody">The ResortRestriction request type request body.</param>
        /// <returns>The response body of the ResortRestriction request type.</returns>
        public ResortRestrictionResponseBody ResortRestriction(ResortRestrictionRequestBody resortRestrictionRequestBody)
        {
            CommonResponse commonResponse = this.SendAddressBookRequest(resortRestrictionRequestBody, RequestType.ResortRestriction);
            ResortRestrictionResponseBody resortRestrictionResponseBody = ResortRestrictionResponseBody.Parse(commonResponse.ResponseBodyRawData);

            this.VerifyResortRestrictionResponseBody(resortRestrictionResponseBody);

            return(resortRestrictionResponseBody);
        }