Table of Contents

Class SetCookieItem

Namespace
Fluxzy.Formatters.Producers.Responses
Assembly
Fluxzy.Core.dll
public class SetCookieItem
Inheritance
SetCookieItem
Inherited Members

Constructors

SetCookieItem(string, string)

public SetCookieItem(string name, string value)

Parameters

name string
value string

Properties

Domain

public string? Domain { get; }

Property Value

string

Expired

public DateTime Expired { get; }

Property Value

DateTime

HttpOnly

public bool HttpOnly { get; }

Property Value

bool

MaxAge

public int? MaxAge { get; }

Property Value

int?

Name

public string Name { get; }

Property Value

string

Path

public string? Path { get; }

Property Value

string

SameSite

public string? SameSite { get; }

Property Value

string

Secure

public bool Secure { get; }

Property Value

bool

Value

public string Value { get; }

Property Value

string

Methods

TryParse(string, out SetCookieItem?)

public static bool TryParse(string rawLine, out SetCookieItem? result)

Parameters

rawLine string
result SetCookieItem

Returns

bool