public IReadOnlyList<PortalFolder> PortalFolders {get;}
Public ReadOnly Property PortalFolders As IReadOnlyList(Of PortalFolder)
public IReadOnlyList<PortalFolder> PortalFolders {get;}
Public ReadOnly Property PortalFolders As IReadOnlyList(Of PortalFolder)
var portal = ArcGISPortalManager.Current.GetActivePortal(); var owner = portal.GetSignOnUsername(); var userContent = await portal.GetUserContentAsync(owner); //Get content for a specific folder (identified by its folder id) //var userContent = await portal.GetUserContentAsync(owner, folderId); //Get all the folders foreach (var pf in userContent.PortalFolders) { //Do something with the folders } //Get all the content items foreach (var pi in userContent.PortalItems) { //Do something with the portal items }
Target Platforms: Windows 11, Windows 10, Windows 8.1