Npgsql.NpgsqlConnectionStringBuilder.Clear C# (CSharp) 메소드

Clear() 공개 메소드

Clear the member and assign them to the default value.
public Clear ( ) : void
리턴 void
		public override void Clear()

		{
			base.Clear();

			foreach (Keywords keyword in defaults.Keys)

			{
				SetValue(keyword, defaults[keyword]);
			}
		}
	}