Class AddressFormFilledEventArgs
Emitted when an address form is filled.
public sealed record AddressFormFilledEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<AddressFormFilledEventArgs>
- Inheritance
-
EventArgsAddressFormFilledEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
AddressFormFilledEventArgs(ImmutableArray<FilledField>, AddressUI)
Emitted when an address form is filled.
public AddressFormFilledEventArgs(ImmutableArray<FilledField> FilledFields, AddressUI AddressUi)
Parameters
FilledFieldsImmutableArray<FilledField>Information about the fields that were filled
AddressUiAddressUIAn UI representation of the address used to fill the form. Consists of a 2D array where each child represents an address/profile line.
Properties
AddressUi
An UI representation of the address used to fill the form. Consists of a 2D array where each child represents an address/profile line.
public AddressUI AddressUi { get; init; }
Property Value
FilledFields
Information about the fields that were filled
public ImmutableArray<FilledField> FilledFields { get; init; }