> -----Original Message----- > From: Ron Grabowski [mailto:[EMAIL PROTECTED] > Sent: 02 June 2005 20:47 > To: Log4NET Dev > Subject: Re: ADONetAppender does not make use of connection pooling > > If the connectionString property accepts a PatterString (do > all properties on all the built-in appenders accept > PatternString?)
The PatternString can be used to set the value of any string property. For example: <foo type="log4net.Util.PatternString" value="%processid" /> The config parser will first try to convert the string "%processid" into a log4net.Util.PatternString type. It will then try to convert the PatternString object into the type of the Foo property. The PatternString supports conversion to a String, if Foo is a String property this conversion will succeed. Nicko
