The properties specified by the remote peer for this link. This operation will return a :class:`Data` object that is valid until the link object is freed. This :class:`Data` object will be empty until the remote link is opened as indicated by the :const:`REM
(self)
| 1109 | |
| 1110 | @property |
| 1111 | def remote_properties(self): |
| 1112 | """ |
| 1113 | The properties specified by the remote peer for this link. |
| 1114 | |
| 1115 | This operation will return a :class:`Data` object that |
| 1116 | is valid until the link object is freed. This :class:`Data` |
| 1117 | object will be empty until the remote link is opened as |
| 1118 | indicated by the :const:`REMOTE_ACTIVE` flag. |
| 1119 | |
| 1120 | :type: :class:`Data` |
| 1121 | """ |
| 1122 | return dat2obj(pn_link_remote_properties(self._impl)) |
| 1123 | |
| 1124 | @property |
| 1125 | def properties(self) -> Optional[PropertyDict]: |
nothing calls this directly
no test coverage detected