West Wind Web and AJAX Utilities provide a host of Web related utility functions and objects related to path management, script loading, script and page compression, UserState management, Cookie management and more. There's also a self-contained, light weight CallbackHandler that allows you to embedded HTTP APIs. Finally there's also a general purpose WebUtils class that provides a host of pathing, reference and other support functions. Also includes the ww.jquery.js client library that provides many, small jQuery plug-ins.
An integration to Cookie Informations Consent solution. Helps you collect visitors Cookie Consents and comply with GDPR and ePrivacy
OWIN middleware that allows sending actions to a single page application in the form of a cookie
OWIN middleware that allows sending actions to a single page application in the form of a cookie
Adds a P3P policy to your website - stop Internet Explorer blocking your cookies! Requires IIS 7+.
Chinchilla.StateManagement is a .NET Core port of cdmdotnet.StateManagement, a C# state management framework that provides a consistent abstraction for accessing data from various collections such as thread bound contexts, HTTP Request and Response collections as well as HTTP Cookies.
Simple and configurable JWT Bearer Authentication for Web APIs and OIDC+Cookie Authentication for Web Apps.
SnkLib.App.CookieGetterを使用し、ブラウザのCookieを取り込む際に使えるUI部品を提供します。
Install the template (it will download from nuget automatically): > dotnet new -i Softlion.NotionSharp.TemplateProjects Get help on parameters for this template: > dotnet new blazorblog --help -p|--page Title of a page on Notion which contains all the pages of the blog string - Required -k|--key value of the notion tokenV2 cookie string - Optional Default: __YourNotionKey__ -b|--browserId value of the notion browserId cookie Guid - Optional Default: __YourNotionBrowserId__ -us|--userId value of the notion userId cookie Guid - Optional Default: __YourNotionUserId__ Create a new website in the current folder, using this template: > dotnet new blazorblog --page "My Public Blog" --key xxXxxXXxxXxxxXXxxx...xxXxxX --browserId aabbccdd-aabb-aabb-aabb-aabbccddaabb --userId eeffeeff-eeff-eeff-eeff-eeffeeffeeff You can also use this simple command: > dotnet new blazorblog --page "My Public Blog" But if you do so, you should add the values as user secrets (remember that secrets work in debug mode only): > dotnet user-secrets init > dotnet user-secrets set "Notion:Key" "xxXxxXXxxXxxxXXxxx...xxXxxX" > dotnet user-secrets set "Notion:BrowserId" "aabbccdd-aabb-aabb-aabb-aabbccddaabb" > dotnet user-secrets set "Notion:UserId" "eeffeeff-eeff-eeff-eeff-eeffeeffeeff" > dotnet user-secrets set "Notion:CmsPageTitle" "Public blog" To uninstall this template: > dotnet new -u Softlion.NotionSharp.TemplateProject.Blog To list all installed templates and get uninstall instructions: > dotnet new --uninstall --help To build a docker image of the blazor blog and test it: right clic the project, clic Publish then choose Docker. Or use these commands: > docker build -t yourdockerhub.com/demonotionblog:1.0.0 . > docker run -p8080:5000 yourdockerhub.com/demonotionblog:1.0.0 > start http://localhost:8080/ Don't forget to set up your notion keys in appsettings.Production.json before, as user secrets are not used in Release mode. Note: the prebuilt docker image vapolia/demonotionblog:latest is made for helm and is missing the appsettings-secrets.Production.json file. To push the blog to a kubernetes cluster: > helm upgrade demonotionblog helm\notionsharpblog --install -f your-value.yaml --dry-run > start http://localhost:5080/ Check helm\notionsharpblog\values.yaml for the available values. Example of a simple your-values.yaml file suitable for minikube: appSettingsSecrets: appsettings-secrets.Production.json: |- { "Notion": { "Key": "aabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccddaabbccdd", "BrowserId": "aabbccdd-aabb-aabb-aabb-aabbccddaabb", "UserId": "eeffeeff-eeff-eeff-eeff-eeffeeffeeff", "CmsPageTitle": "My Blog" } } #For minikube only service: type: LoadBalancer port: 5080
Package Description
This is a fork of websocket-sharp with support for NTLM/Kerberos Proxy authentication. websocket-sharp provides the WebSocket protocol client and server. It supports: - RFC 6455 - WebSocket Client and Server - Per-message Compression extension - Secure Connection - HTTP Authentication (Basic/Digest) - Query String, Origin header and Cookies - Connecting through the HTTP Proxy server - .NET 3.5 or later (includes compatible)
The TarteAuCitron module allows you to manage cookie consent.
Experience.Webpage is a useful page manager class for asp.net web projects. You can find the project wiki here: https://github.com/bkarababa/Experience
Provides helpers (designed for dependancy injection) for request and response meta (such as cookies and headers), session helpers, Tag Helpers, HTML encoding helpers and more for ASP.NET MVC
Experience is a useful, clean and fast functions library for .NET Projects. You can find the project wiki here: https://github.com/bkarababa/Experience
A library for a Cookie Authentication Sign-in for Verifiable Credentials
OWIN middleware for working with session-cookie and session properties
TypeScript Definitions (d.ts) for cookie. Generated based off the DefinitelyTyped repository [git commit: 49e00c423a63b6e5b00cf0105c5fe6a2ac57336b]. http://github.com/DefinitelyTyped
TypeScript Definitions (d.ts) for angular-cookie. Generated based off the DefinitelyTyped repository [git commit: 49e00c423a63b6e5b00cf0105c5fe6a2ac57336b]. http://github.com/DefinitelyTyped
Extends XAF by adding great new features for example; ◦the ability to generate runtime members for your objects, ◦creating Application/Role/User models in the database, ◦storing your web cookies in the database, ◦handling of external application models, ◦combine end user modifications with application model, ◦support for multiple models at design time, Blogs: http://apobekiaris.blogspot.com/search/label/ModelDifference. To debug in VS enable Source Server support under Tools/Options/Debugging.
Extends XAF by adding great new features for example; ◦the ability to generate runtime members for your objects, ◦creating Application/Role/User models in the database, ◦storing your web cookies in the database, ◦handling of external application models, ◦combine end user modifications with application model, ◦support for multiple models at design time, Blogs: http://apobekiaris.blogspot.com/search/label/ModelDifference.. To debug in VS enable Source Server support under Tools/Options/Debugging.
This client library allow to manage cookies: Get, Set, Remove. Easy to use: CookiesHelper.SetCookie("keyValue", "exampleValue", DateTime.Now.AddDays(30)); var value = CookiesHelper.GetCookieValue("keyValue"); Available basic methods: public static string GetCookieValue(string key) public static void SetCookie(string key, string value, DateTime expires) Available methods: public static string GetCookieValue(string key) public static Dictionary<string, string> GetAllCookiesKeyAndValue() public static HttpCookie GetCookie(string key) public static Dictionary<string, HttpCookie> GetAllCookiesDictionary() public static List<HttpCookie> GetAllCookies() public static void SetCookie(string key, string value, DateTime expires) public static void RemoveCookie(string key) public static void RemoveAllCookies()
A SAML2 Http Module for ASP.NET. Install in project and add sections to web.config. No coding required. The package adds an ASP.NET Http Authentication Module that handles SAML SignIn and SignOut. It works with the claims model of .NET and uses the present infrastructure for session authentication cookies etc.
Cookie storage component of Hack System. Should work together with blazor.cookie.js of Hack System.
TypeScript Definitions (d.ts) for cookie-session. Generated based off the DefinitelyTyped repository [git commit: 49e00c423a63b6e5b00cf0105c5fe6a2ac57336b]. http://github.com/DefinitelyTyped
Simple Cookie Manager for ASP.NET MVC
TypeScript Definitions (d.ts) for cookie-parser. Generated based off the DefinitelyTyped repository [git commit: 49e00c423a63b6e5b00cf0105c5fe6a2ac57336b]. http://github.com/DefinitelyTyped
In-process memory sessions for NancyFx.
A ServiceStack auth provider that is integrated with the Authlink Identity Provider
Notificación de política de cookies. Callbacks para llamadas a Google Analytics y para abrir política de cookies.
SelectPdf Html To Pdf Converter for .NET Core - Community Edition is the free version of the powerful html to pdf converter available in SelectPdf Library for .NET Core and .NET 5-8. The converter offers a lot of powerful options (convert any web page to pdf, convert any html string to pdf, html5/css3/javascript support, headers and footers support, etc) and the only limitation is that it can generate pdf documents up to 5 pages long. Free Html to Pdf Converter For .NET – Community Edition Features: Generate pdf documents up to 5 pages, Convert any web page to pdf, Convert any raw html string to pdf, Set pdf page settings (page size, page orientation, page margins), Resize content during conversion to fit the pdf page, Set pdf document properties, Set pdf viewer preferences, Set pdf security (passwords, permissions), Set conversion delay and web page navigation timeout, Custom headers and footers, Support for html in headers and footers, Automatic and manual page breaks, Repeat html table headers on each page, Support for @media types screen and print, Support for internal and external links, Generate bookmarks automatically based on html elements, Support for HTTP headers, Support for HTTP cookies, Support for web pages that require authentication, Support for proxy servers, Enable/disable javascript, Modify color space, Multithreading support, HTML5/CSS3 support, Web fonts support and many more.
A SAML2 Service Provider for ASP.NET MVC. Install in project and add sections to web.config. No coding required. The package adds an MVC controller that handles SAML SignIn and SignOut. It works with the claims model of .NET and uses the present infrastructure for session authentication cookies etc.
FunScript binding for doccookies (BETA version).
JWTCookieAuthentication is a package for usage of JWT token for authentication both as bearer token and inside cookie.
Three extension methods to validate a string value.
TypeScript Definitions (d.ts) for angular-cookies. Generated based off the DefinitelyTyped repository [git commit: 49e00c423a63b6e5b00cf0105c5fe6a2ac57336b]. http://github.com/DefinitelyTyped
Provides 24SevenOffice SOAP API Authenticate Service wrapper for .NET Standard. Includes support for 24SevenOffice-specific session id cookies.
net core session 免责申明:只是为了帮助开发人员简化开发流程、提高开发效率,请勿使用此框架做任何违法国家法律的事情。使用者所做任何事情也与本框架的作者无关。 添加 清除cookie功能 net core版的请求插件,自定义添加请求头,cookie,以及回调等等
MerchantTribe.Web is a utility library for building .NET web applications and includes tools for Data Access Repositories, Passwords, HTML Sanitizer, Geography, Cookie Management and more.
Package Description
Angular service provide access to browser cookies for setting, removing and reading
A LiteDB session store for Red.CookieSessions
A SQLite session store for Red.CookieSessions, to persists sessions