Skip to content

Commit

Permalink
Merge pull request #1054 from NLog/IWcfLogReceiverClient-CreateLogRec…
Browse files Browse the repository at this point in the history
…eiver-virtual

LogReceiverWebServiceTarget.CreateLogReceiver()  should be virtual
  • Loading branch information
304NotModified committed Nov 18, 2015
2 parents b76c16d + c0f865c commit e4bceb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/NLog/Targets/LogReceiverWebServiceTarget.cs
Expand Up @@ -378,7 +378,8 @@ protected virtual WcfLogReceiverClient CreateWcfLogReceiverClient()
/// service configuration - binding and endpoint address
/// </summary>
/// <returns></returns>
protected IWcfLogReceiverClient CreateLogReceiver()
/// <remarks>virtual is used by endusers</remarks>
protected virtual IWcfLogReceiverClient CreateLogReceiver()
{
#pragma warning disable 612, 618

Expand Down

0 comments on commit e4bceb8

Please sign in to comment.