Npgsql.NpgsqlConnectionStringBuilder.this C# (CSharp) Method

this() public method

Case insensative accessor for indivual connection string values.
public this ( string keyword ) : object
keyword string
return object
		public override object this[string keyword]

		{
			get { return this[GetKey(keyword)]; }

			set { this[GetKey(keyword)] = value; }
		}

Same methods

NpgsqlConnectionStringBuilder::this ( Keywords keyword ) : object