IPWorks Auth 2020 Python Edition

Questions / Feedback?

on_end_element Event

Fired when an end-element tag is encountered.

Syntax

class SAMLEndElementEventParams(object):
  @property
  def namespace() -> str: ...
  @property
  def element() -> str: ...
  @property
  def q_name() -> str: ...
  @property
  def is_empty() -> bool: ...

# In class SAML:
@property
def on_end_element() -> Callable[[SAMLEndElementEventParams], None]: ...
@on_end_element.setter
def on_end_element(event_hook: Callable[[SAMLEndElementEventParams], None]) -> None: ...

Remarks

The on_end_element event is fired when an end-element tag is found in the document.

The element name is provided by the Element parameter.

The IsEmpty parameter is true when the event corresponds with an empty element declaration.

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