Method SettingGetFlightedFeatureFlags
SettingGetFlightedFeatureFlags(String)
Get a list of features enables for a given flight.
Declaration
public System.Threading.Tasks.Task<Den.Dev.Grunt.Models.HaloApiResultContainer<Den.Dev.Grunt.Models.HaloInfinite.FlightedFeatureFlags,Den.Dev.Grunt.Models.RawResponseContainer>> SettingGetFlightedFeatureFlags (string flightId);
Parameters
Type | Name | Description |
---|---|---|
System.String | flightId | Clearance ID/flight that is being used. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<HaloApiResultContainer<FlightedFeatureFlags,RawResponseContainer>> | An instance of FlightedFeatureFlags containing a list of enabled and disabled features if the request is successful. Otherwise, returns null. |
Examples
Here is an example response from the API, as snapshotted on 7/19/2022:
{
"EnabledFeatures": [
"DiscordEnabled",
"TelemetryCombatEncountersEnabled"
],
"DisabledFeatures": [
"ShowMirroredOptionsPracticeMenu"
]
}