IPWorks MQ 2020 Python Edition

Questions / Feedback?

on_redirect Event

Fired when a redirection is received from the server.

Syntax

class AzureRelayReceiverRedirectEventParams(object):
  @property
  def location() -> str: ...
  @property
  def accept() -> bool: ...
  @accept.setter
  def accept(value) -> None: ...

# In class AzureRelayReceiver:
@property
def on_redirect() -> Callable[[AzureRelayReceiverRedirectEventParams], None]: ...
@on_redirect.setter
def on_redirect(event_hook: Callable[[AzureRelayReceiverRedirectEventParams], None]) -> None: ...

Remarks

This event is where the client can decide whether to continue with the redirection process or not. The Accept parameter is always true by default, but if you do not want to follow the redirection, Accept may be set to false, in which case the class fails with an error. Location is the location to which the client is being redirected. Further control over redirection is provided in the follow_redirects property.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks MQ 2020 Python Edition - Version 20.0 [Build 8155]