System.Net.CookieCollection.this C# (CSharp) Method

this() public method

public this ( string name ) : Cookie
name string
return Cookie
        public Cookie this[string name]
        {
            get
            {
                foreach (Cookie c in _list)
                {
                    if (string.Equals(c.Name, name, StringComparison.OrdinalIgnoreCase))
                    {
                        return c;
                    }
                }
                return null;
            }
        }

Same methods

CookieCollection::this ( int index ) : Cookie