Skip to main content

Posts

Showing posts with the label get

Angular 5 Cookies - Check, Get, GetAll, Delete and DeleteAll Methods

The  cookie based  authentication has been the default and the  cookie based authentication  is stateful. Stateful  – keep and track of the previously stored information which is used for current transaction. A Stateful service based on  HTTP Cookies  uses the HTTP transport protocol and its ability to convey cookies, used as session context. Cookies Methods - Check (name: string): Boolean; //Check Cookies const IsCookieExists : boolean = this . cookieService . check ( 'cookieApp' ); Get (name: string): string;     //Get Cookies     this . cookieValue = this . cookieService . get ( 'cookieApp' ); getAll(): {};     //Get all cookies     const allCookies : {} = this . cookieService . getAll (); Delete (name: string, path?: string, domain?: string ): void;     //delete cookies     this . cookieService . delete ( 'cooki...