@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
45 lines • 876 B
JavaScript
export class Cookie {
get name() {
return this.mname;
}
set name(value) {
this.mname = value;
}
get value() {
return this.mvalue;
}
set value(value) {
this.mvalue = value;
}
get path() {
return this.mpath;
}
set path(value) {
this.mpath = value;
}
get expirationDate() {
return this.mexpirationDate;
}
set expirationDate(value) {
this.mexpirationDate = value;
}
get domain() {
return this.mdomain;
}
set domain(value) {
this.mdomain = value;
}
get secure() {
return this.msecure;
}
set secure(value) {
this.msecure = value;
}
get httpOnly() {
return this.mhttpOnly;
}
set httpOnly(value) {
this.mhttpOnly = value;
}
}
//# sourceMappingURL=cookie.js.map