Method FetchConfigs
FetchConfigs<T, T2>(T, T2)
Fetches an app configuration settings from the remote server.
Declaration
public static void FetchConfigs<T, T2>(T userAttributes, T2 appAttributes)
where T : struct where T2 : struct
Parameters
Type | Name | Description |
---|---|---|
T | userAttributes | A struct containing custom user attributes. If none apply, use an empty struct. |
T2 | appAttributes | A struct containing custom app attributes. If none apply, use an empty struct. |
Type Parameters
Name | Description |
---|---|
T | The type of the |
T2 | The type of the |
FetchConfigs<T, T2, T3>(T, T2, T3)
Fetches an app configuration settings from the remote server passing filterAttributes.
Declaration
public static void FetchConfigs<T, T2, T3>(T userAttributes, T2 appAttributes, T3 filterAttributes)
where T : struct where T2 : struct where T3 : struct
Parameters
Type | Name | Description |
---|---|---|
T | userAttributes | A struct containing custom user attributes. If none apply, use an empty struct. |
T2 | appAttributes | A struct containing custom app attributes. If none apply, use an empty struct. |
T3 | filterAttributes | A struct containing filter attributes. If none apply, use an empty struct. |
Type Parameters
Name | Description |
---|---|
T | The type of the |
T2 | The type of the |
T3 | The type of the |
FetchConfigs<T, T2>(String, T, T2)
Fetches an app configuration settings from the remote server passing a configType.
Declaration
public static void FetchConfigs<T, T2>(string configType, T userAttributes, T2 appAttributes)
where T : struct where T2 : struct
Parameters
Type | Name | Description |
---|---|---|
String | configType | A string containing configType. If none apply, use null. |
T | userAttributes | A struct containing custom user attributes. If none apply, use an empty struct. |
T2 | appAttributes | A struct containing custom app attributes. If none apply, use an empty struct. |
Type Parameters
Name | Description |
---|---|
T | The type of the |
T2 | The type of the |
FetchConfigs<T, T2, T3>(String, T, T2, T3)
Fetches an app configuration settings from the remote server passing a configType and filterAttributes.
Declaration
public static void FetchConfigs<T, T2, T3>(string configType, T userAttributes, T2 appAttributes, T3 filterAttributes)
where T : struct where T2 : struct where T3 : struct
Parameters
Type | Name | Description |
---|---|---|
String | configType | A string containing configType. If none apply, use empty string. |
T | userAttributes | A struct containing custom user attributes. If none apply, use an empty struct. |
T2 | appAttributes | A struct containing custom app attributes. If none apply, use an empty struct. |
T3 | filterAttributes | A struct containing filter attributes. If none apply, use an empty struct. |
Type Parameters
Name | Description |
---|---|
T | The type of the |
T2 | The type of the |
T3 | The type of the |