Skip to main content Skip to complementary content

WithApp Method

Overloads

WithApp(IAppIdentifier, SessionType)

Initializes a app specific session

SessionTypeBehavior
SessionType.DefaultConnects to a app session shared with the Qlik Sense web client
SessionType.RandomConnects to a globally unique app session

WithApp(IAppIdentifier, String)

Initializes a app specific session with a custom session token

WithApp(IAppIdentifier, SessionType)

Initializes a app specific session

SessionTypeBehavior
SessionType.DefaultConnects to a app session shared with the Qlik Sense web client
SessionType.RandomConnects to a globally unique app session

Declaration

      public static ISession WithApp(IAppIdentifier appIdentifier, SessionType sessionType)
    

Parameters

Type Name Description
IAppIdentifier appIdentifier

application identifier to attach the session to

SessionType sessionType

the wanted session type

Returns

Type Description
ISession

a session identifier

Examples

    // create a session that is private
ISession privateSession = Session.WithApp(appIdentifier, SessionType.Random);
  

WithApp(IAppIdentifier, String)

Initializes a app specific session with a custom session token

Declaration

      public static ISession WithApp(IAppIdentifier appIdentifier, string sessionToken = null)
    

Parameters

Type Name Description
IAppIdentifier appIdentifier

application identifier to attach the session to

System.String sessionToken

a custom session token

Returns

Type Description
ISession

a session identifier

Examples

    // create a session that synchronizes with the Qlik Sense client
ISession syncedSession = Session.WithApp(appIdentifier);

// create a session that synchronizes with other clients using the same token
ISession privateSession = Session.WithApp(appIdentifier, "MySpecificSession");
  

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!