Interface ISimpleSessionControl

interface ISimpleSessionControl {
    getComment(): string;
    getCsrfCookie(): string;
    getDefaultProjectContext(): IProjectContext;
    getProject(): string;
    setComment(comment): void;
    setProject(project): void;
}

Methods

  • In the web app environment, where this api is used in a context with existing global variables, the default project context should be provided. It provides "live" access to globals of the current project.

    Returns IProjectContext

    A valid IProjectContext or null if none is available.

Generated using TypeDoc