You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by bo...@apache.org on 2018/05/29 18:54:06 UTC

[3/3] logging-log4net git commit: LOG4NET-586 make properties virtual

LOG4NET-586 make properties virtual


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/aed08e07
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/aed08e07
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/aed08e07

Branch: refs/heads/feature/LOG4NET-586
Commit: aed08e0740ff5c5f865e054e48c5288e30599127
Parents: efaf70c
Author: Stefan Bodewig <bo...@apache.org>
Authored: Tue May 29 20:53:42 2018 +0200
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Tue May 29 20:53:42 2018 +0200

----------------------------------------------------------------------
 src/Layout/XmlLayoutBaseNS.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/aed08e07/src/Layout/XmlLayoutBaseNS.cs
----------------------------------------------------------------------
diff --git a/src/Layout/XmlLayoutBaseNS.cs b/src/Layout/XmlLayoutBaseNS.cs
index c4fe537..c3e1f5b 100644
--- a/src/Layout/XmlLayoutBaseNS.cs
+++ b/src/Layout/XmlLayoutBaseNS.cs
@@ -131,7 +131,7 @@ namespace log4net.Layout
 		/// <summary>
 		/// The namespace URI to use for the elements and attributes written by this layout.
 		/// </summary>
-		public string NamespaceUri
+		public virtual string NamespaceUri
 		{
 			get { return m_namespaceUri; }
 			set { m_namespaceUri = value; }
@@ -146,7 +146,7 @@ namespace log4net.Layout
 		/// select the prefix or use no prefix at all.
 		/// </para>
 		/// </remarks>
-		public string Prefix
+		public virtual string Prefix
 		{
 			get { return m_prefix; }
 			set { m_prefix = value; }