ISessionServiceGetSessions Method  | 
 
            Retrieves a list of sessions having the specified IDs.
            
 
    Namespace: 
   Dundas.BI.AccountServices
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
SyntaxIDictionary<Guid, Session?> GetSessions(
	ICollection<Guid> sessionIds
)
Function GetSessions ( 
	sessionIds As ICollection(Of Guid)
) As IDictionary(Of Guid, Session)
IDictionary<Guid, Session^>^ GetSessions(
	ICollection<Guid>^ sessionIds
)
abstract GetSessions : 
        sessionIds : ICollection<Guid> -> IDictionary<Guid, Session> 
Parameters
- sessionIds
 - Type: System.Collections.GenericICollectionGuid
The IDs of the sessions to retrieve. 
Return Value
Type: 
IDictionaryGuid, 
Session
            A dictionary (keyed by session ID) containing the corresponding 
Session
            or 
 if the session does not exist.
            
Exceptions
See Also