Click or drag to resize

ISessionManagementGetAllFoldersWithExternalContextByExternalId Method

Gets a list of all folders that match a list of external Ids using the FolderWithExternalContext object. The user must have access to all the requested folders. Searches across all membership providers.

Namespace:  Panopto.Server.Services.PublicAPI.V46.Soap
Assembly:  DataLib (in DataLib.dll) Version: 13.0.0.0 (13.0.0.00000)
Syntax
C#
IEnumerable<FolderWithExternalContext> GetAllFoldersWithExternalContextByExternalId(
	AuthenticationInfo auth,
	IEnumerable<string> folderExternalIds,
	IEnumerable<string> providerNames
)

Parameters

auth
Type: Panopto.Server.Services.PublicAPI.V40AuthenticationInfo
Used to authenticate the current user. Can be null if an auth cookie is passed
folderExternalIds
Type: System.Collections.GenericIEnumerableString
The external ids of the folders to retrieve
providerNames
Type: System.Collections.GenericIEnumerableString
List of external membership providers to search across. Use null to search across all membership providers, as well as external Id set by UpdateSessionExternalId().

Return Value

Type: IEnumerableFolderWithExternalContext
The requested folders. Since more than one folder can have the same external Id, more folders may be returned than ids are passed in
See Also