Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
Remove missed useHttpPut references (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbialkowski-r7 authored Nov 30, 2020
1 parent ec66e4a commit 2c3fd55
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 35 deletions.
28 changes: 0 additions & 28 deletions src/LogentriesLog4net/LogentriesAppender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,34 +86,6 @@ public bool Debug
}


/* Set to true to use HTTP PUT logging. */
public bool UseHttpPut
{
get
{
return logentriesAsync.getUseHttpPut();
}
set
{
logentriesAsync.setUseHttpPut(value);
}
}

/* This property exists for backward compatibility with older configuration XML. */
[Obsolete("Use the UseHttpPut property instead.")]
public bool HttpPut
{
get
{
return logentriesAsync.getUseHttpPut();
}
set
{
logentriesAsync.setUseHttpPut(value);
}
}


/* Set to true to use SSL with HTTP PUT logging. */
public bool UseSsl
{
Expand Down
7 changes: 0 additions & 7 deletions src/LogentriesNLog/LogentriesTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,6 @@ public string Token
set { logentriesAsync.setToken(value); }
}

/** HTTP PUT Flag */
public bool HttpPut
{
get { return logentriesAsync.getUseHttpPut(); }
set { logentriesAsync.setUseHttpPut(value); }
}

/** SSL/TLS parameter flag */
public bool Ssl
{
Expand Down

0 comments on commit 2c3fd55

Please sign in to comment.