class CookieContainer

in global :: Sandbox

😔 No documentation found.


public void SetString( string key, string value )

Set a cookie to be stored between sessions. The cookie will expire one month from when it was set.

public string GetString( string key, string fallback = )

Get a stored session cookie.

public bool TryGetString( string key, ref string val )

Get a stored session cookie.

public void Remove( string key )

Removes a cookie from the cache entirely

public bool TryGet( string key, ref T val )

😔 No documentation found.

public T Get( string key, T fallback )

😔 No documentation found.

public void Set( string key, T value )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.