Accesses an NSObject value stored in a framer message.
SDKs
- iOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
Framework
- Network
Declaration
id nw_framer_message_copy_object_value(nw _framer _message _t message, const char *key);
Accesses an NSObject value stored in a framer message.
SDKs
Framework
id nw_framer_message_copy_object_value(nw _framer _message _t message, const char *key);
nw _framer _message _t
A message for a custom protocol, in which you can store arbitrary key-value pairs.
nw _protocol _metadata _is _framer _message
Checks if a metadata object represents a custom framer protocol message.
nw _framer _protocol _create _message
Initializes an empty message for a custom framer definition.
nw _framer _message _create
Initializes an empty message from within a framer implementation.
nw _framer _message _set _value
Sets a value to be stored in a framer message, with a completion to call to disposed the stored value when the message is released.
nw _framer _message _dispose _value _t
A handler that's invoked when your custom value needs to be released due to a message being released or the value being replaced.
nw _framer _message _set _object _value
Sets an NSObject value to be stored in a framer message.
nw _framer _message _access _value
Accesses a custom value stored in a framer message.