ICookieItem

Assembly: ZennoLab.InterfacesLibrary
Full name: ZennoLab.InterfacesLibrary.ProjectModel.ICookieItem
Kind: interface


Represents the item of cookie.

This interface can be used in action OwnCode (C# or PHP) of ProjectMaker.

Properties

Host

Property

string Host { get; }

Gets the host of cookie item.

Path

Property

string Path { get; }

Gets the path of cookie item.

Name

Property

string Name { get; }

Gets the name of cookie item.

Value

Property

string Value { get; }

Gets the value of cookie item.

Expiry

Property

DateTime Expiry { get; }

Gets the expiry date of cookie item.

IsDomain

Property

bool IsDomain { get; }

Gets the domain flag of cookie item.

IsSecure

Property

bool IsSecure { get; }

Gets the secure flag of cookie item.

IsHttpOnly

Property

bool IsHttpOnly { get; }

Gets the httpOnly flag of cookie item.

IsSession

Property

bool IsSession { get; }

Gets the session flag of cookie item.

NormalizedHost

Property

string NormalizedHost { get; }

Gets the normalized host of cookie item. If host starts with ”.”, this ”.” will be deleted in the normalized host.

SameSite

Property

string SameSite { get; }

Gets the sameSite attribute of cookie item.

Priority

Property

string Priority { get; }

Gets the priority attribute of cookie item.