System.Net.CookieCollection.this C# (CSharp) 메소드

this() 공개 메소드

public this ( string name ) : Cookie
name string
리턴 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