AutofillResponseFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum AutofillResponseFlags
[<System.Flags>]
type AutofillResponseFlags =
- Inheritance
-
AutofillResponseFlags
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| TrackContextCommited | 1 | Flag used to generate events of type FillEventHistory.Event.TYPE_CONTEXT_COMMITTED—if this flag is not passed to Builder.setFlags(int), these events are not generated. Android reference for Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. |
| DisableActivityOnly | 2 | Flag used to change the behavior of FillResponse.Builder.disableAutofill(long)— when this flag is passed to Builder.setFlags(int), autofill is disabled only for the activiy that generated the FillRequest, not the whole app. Android reference for Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. |
| DelayFill | 4 | Flag used to request to wait for a delayed fill from the remote Autofill service if it's passed to Builder.setFlags(int). Some datasets (i.e. OTP) take time to produce. This flags allows remote service to send a FillResponse to the latest FillRequest via FillRequest.getDelayedFillIntentSender() even if the original FillCallback has timed out. Android reference for Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. |