FWPropertyListResponseSerializer


@interface FWPropertyListResponseSerializer : FWHTTPResponseSerializer

FWPropertyListResponseSerializer is a subclass of FWHTTPResponseSerializer that validates and decodes XML responses as an NSXMLDocument objects.

By default, FWPropertyListResponseSerializer accepts the following MIME types:

  • application/x-plist
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)init;
  • The property list format. Possible values are described in “NSPropertyListFormat”.

    Declaration

    Objective-C

    @property (nonatomic) NSPropertyListFormat format;
  • The property list reading options. Possible values are described in “NSPropertyListMutabilityOptions.”

    Declaration

    Objective-C

    @property (nonatomic) NSPropertyListReadOptions readOptions;
  • Creates and returns a property list serializer with a specified format, read options, and write options.

    Declaration

    Objective-C

    + (nonnull instancetype)serializerWithFormat:(NSPropertyListFormat)format
                                     readOptions:
                                         (NSPropertyListReadOptions)readOptions;

    Parameters

    format

    The property list format.

    readOptions

    The property list reading options.