public NameValuePair Clone() { return new NameValuePair(this._name, this._value); }
public string Name { get { return this._name; } }
public NameValuePair Next { get { return this._next; } set { if ( this._next != null ) { throw new InvalidOperationException(); } this._next = value; } }
public string Value { get { return this._value; } } }