CSharpTradeOffers.Web.Account.FindCookiesByPartialName C# (CSharp) Method

FindCookiesByPartialName() public method

public FindCookiesByPartialName ( string name ) : System.Net.Cookie[]
name string
return System.Net.Cookie[]
        public Cookie[] FindCookiesByPartialName(string name)
        {
            return AuthContainer.GetCookies(new Uri("https://steamcommunity.com")).Cast<Cookie>().Where(cookie => cookie.Name.ToUpper().Contains(name.ToUpper())).ToArray();
        }