You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-dev@logging.apache.org by ni...@apache.org on 2004/12/19 20:24:18 UTC

cvs commit: logging-log4net/src/Util ReadOnlyPropertiesDictionary.cs

nicko       2004/12/19 11:24:18

  Modified:    src/Util ReadOnlyPropertiesDictionary.cs
  Log:
  Updates suggested by FxCop.
  Minor naming changes to internal types.
  Perf improvements to type check + type cast code.
  
  Revision  Changes    Path
  1.3       +1 -1      logging-log4net/src/Util/ReadOnlyPropertiesDictionary.cs
  
  Index: ReadOnlyPropertiesDictionary.cs
  ===================================================================
  RCS file: /home/cvs/logging-log4net/src/Util/ReadOnlyPropertiesDictionary.cs,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ReadOnlyPropertiesDictionary.cs	2 Aug 2004 09:42:27 -0000	1.2
  +++ ReadOnlyPropertiesDictionary.cs	19 Dec 2004 19:24:18 -0000	1.3
  @@ -158,7 +158,7 @@
   		/// <param name="info">The <see cref="SerializationInfo" /> to populate with data.</param>
   		/// <param name="context">The destination for this serialization.</param>
   		[System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
  -		public void GetObjectData(SerializationInfo info, StreamingContext context)
  +		public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
   		{
   			foreach(DictionaryEntry entry in InnerHashtable)
   			{