├── .gitignore ├── AuthenticationModuleDemo ├── AuthenticationModuleDemo.csproj ├── Content │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Icon.png ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.9.1.intellisense.js │ ├── jquery-1.9.1.js │ ├── jquery-1.9.1.min.js │ ├── jquery-1.9.1.min.map │ └── npm.js ├── Simple.aspx ├── Simple.aspx.cs ├── Simple.aspx.designer.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── packages.config ├── Images └── screenshot.png ├── LICENSE.txt ├── QlikAuthNet.sln ├── QlikAuthNet ├── Properties │ └── AssemblyInfo.cs ├── QlikAuthNet.cs ├── QlikAuthNet.csproj └── packages.config ├── README.md └── SessionModuleDemo ├── App_Start └── WebApiConfig.cs ├── Controllers └── SessionController.cs ├── Global.asax ├── Global.asax.cs ├── Properties └── AssemblyInfo.cs ├── SessionModuleDemo.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/.gitignore -------------------------------------------------------------------------------- /AuthenticationModuleDemo/AuthenticationModuleDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/AuthenticationModuleDemo.csproj -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Content/bootstrap.css -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Content/bootstrap.css.map -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Content/bootstrap.min.css -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Default.aspx -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Default.aspx.cs -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Default.aspx.designer.cs -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Icon.png -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Scripts/bootstrap.js -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Scripts/jquery-1.9.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Scripts/jquery-1.9.1.intellisense.js -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Scripts/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Scripts/jquery-1.9.1.js -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Scripts/jquery-1.9.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Scripts/jquery-1.9.1.min.map -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Scripts/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Scripts/npm.js -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Simple.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Simple.aspx -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Simple.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Simple.aspx.cs -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Simple.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Simple.aspx.designer.cs -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Web.Debug.config -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Web.Release.config -------------------------------------------------------------------------------- /AuthenticationModuleDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/Web.config -------------------------------------------------------------------------------- /AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /AuthenticationModuleDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/AuthenticationModuleDemo/packages.config -------------------------------------------------------------------------------- /Images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/Images/screenshot.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /QlikAuthNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/QlikAuthNet.sln -------------------------------------------------------------------------------- /QlikAuthNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/QlikAuthNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /QlikAuthNet/QlikAuthNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/QlikAuthNet/QlikAuthNet.cs -------------------------------------------------------------------------------- /QlikAuthNet/QlikAuthNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/QlikAuthNet/QlikAuthNet.csproj -------------------------------------------------------------------------------- /QlikAuthNet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/QlikAuthNet/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/README.md -------------------------------------------------------------------------------- /SessionModuleDemo/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /SessionModuleDemo/Controllers/SessionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/Controllers/SessionController.cs -------------------------------------------------------------------------------- /SessionModuleDemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/Global.asax -------------------------------------------------------------------------------- /SessionModuleDemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/Global.asax.cs -------------------------------------------------------------------------------- /SessionModuleDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SessionModuleDemo/SessionModuleDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/SessionModuleDemo.csproj -------------------------------------------------------------------------------- /SessionModuleDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/Web.Debug.config -------------------------------------------------------------------------------- /SessionModuleDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/Web.Release.config -------------------------------------------------------------------------------- /SessionModuleDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/Web.config -------------------------------------------------------------------------------- /SessionModuleDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/braathen/qlik-auth-net/HEAD/SessionModuleDemo/packages.config --------------------------------------------------------------------------------