System.Net.CookieCollection.this C# (CSharp) Метод

this() публичный Метод

public this ( int index ) : Cookie
index int
Результат Cookie
        public Cookie this[int index]
        {
            get
            {
                if (index < 0 || index >= _list.Count)
                {
                    throw new ArgumentOutOfRangeException(nameof(index));
                }
                return _list[index];
            }
        }

Same methods

CookieCollection::this ( string name ) : Cookie