Interface IAppInfoProvider
Interface that represent a provider for app information.
Namespace: Unity.Cloud.Common
Syntax
public interface IAppInfoProvider
Methods
GetAppInfoAsync(String)
Gets an AppInfo from an app Id.
Declaration
Task<AppInfo> GetAppInfoAsync(string id)
Parameters
Type | Name | Description |
---|---|---|
String | id | The app id |
Returns
Type | Description |
---|---|
Task<AppInfo> | An AppInfo instance |
GetAppsInfoAsync(OrganizationId)
Gets the list of apps registered for an organization.
Declaration
Task<List<AppInfo>> GetAppsInfoAsync(OrganizationId userOrgId)
Parameters
Type | Name | Description |
---|---|---|
OrganizationId | userOrgId |
Returns
Type | Description |
---|---|
Task<List<AppInfo>> | The list of apps registered for an organization. |