System.Net.Http.Headers.CookieState.CookieState C# (CSharp) Метод

CookieState() приватный Метод

private CookieState ( CookieState source ) : System.Collections.Specialized
source CookieState
Результат System.Collections.Specialized
        private CookieState(CookieState source)
        {
            Contract.Requires(source != null);

            _name = source._name;
            if (source._values != null)
            {
                Values.Add(source._values);
            }
        }

Same methods

CookieState::CookieState ( string name ) : System.Collections.Specialized
CookieState::CookieState ( string name, NameValueCollection values ) : System.Collections.Specialized
CookieState::CookieState ( string name, string value ) : System.Collections.Specialized