You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureBlobStorage/BlobStorageTarget.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -130,8 +130,9 @@ public sealed class BlobStorageTarget : AsyncTaskTarget
130
130
publicLayoutProxyPassword{get;set;}
131
131
132
132
/// <summary>
133
-
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server, overriding any values that may have been set in <see cref="ProxyLogin"/> and <see cref="ProxyPassword"/>.
133
+
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server.
134
134
/// </summary>
135
+
/// <remarks>Take precedence over <see cref = "ProxyLogin" /> and <see cref="ProxyPassword"/> when set to <see langword="true"/>.</remarks>
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureBlobStorage/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ _proxyLogin_ - Login to use for the proxy server. Requires `proxyPassword`.
69
69
70
70
_proxyPassword_ - Password to use for the proxy server. Requires `proxyLogin`.
71
71
72
-
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server.
72
+
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server. Take precedence over `proxyLogin` and `proxyPassword` when set to `true`.
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureDataTables/DataTablesTarget.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -167,11 +167,11 @@ public override int GetHashCode()
167
167
publicLayoutProxyPassword{get;set;}
168
168
169
169
/// <summary>
170
-
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server, overriding any values that may have been set in <see cref="ProxyLogin"/> and <see cref="ProxyPassword"/>.
170
+
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server.
171
171
/// </summary>
172
+
/// <remarks>Take precedence over <see cref = "ProxyLogin" /> and <see cref="ProxyPassword"/> when set to <see langword="true"/>.</remarks>
172
173
publicboolUseDefaultCredentialsForProxy{get;set;}
173
174
174
-
175
175
/// <summary>
176
176
/// Gets or sets the name of the Azure table where log entries will be stored.
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureDataTables/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ _proxyLogin_ - Login to use for the proxy server. Requires `proxyPassword`.
68
68
69
69
_proxyPassword_ - Password to use for the proxy server. Requires `proxyLogin`.
70
70
71
-
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server.
71
+
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server. Take precedence over `proxyLogin` and `proxyPassword` when set to `true`.
72
72
73
73
### Dynamic TableEntity
74
74
Instead of using the predefined NLogEntity-properties, then one can specify wanted properties:
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureEventGrid/EventGridTarget.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -152,8 +152,9 @@ public string DataFormat
152
152
publicLayoutProxyPassword{get;set;}
153
153
154
154
/// <summary>
155
-
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server, overriding any values that may have been set in <see cref="ProxyLogin"/> and <see cref="ProxyPassword"/>.
155
+
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server.
156
156
/// </summary>
157
+
/// <remarks>Take precedence over <see cref = "ProxyLogin" /> and <see cref="ProxyPassword"/> when set to <see langword="true"/>.</remarks>
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureEventGrid/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ _proxyLogin_ - Login to use for the proxy server. Requires `proxyPassword`.
74
74
75
75
_proxyPassword_ - Password to use for the proxy server. Requires `proxyLogin`.
76
76
77
-
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server.
77
+
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server. Take precedence over `proxyLogin` and `proxyPassword` when set to `true`.
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureEventHub/EventHubTarget.cs
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -201,9 +201,9 @@ public class EventHubTarget : AsyncTaskTarget
201
201
publicLayoutProxyPassword{get;set;}
202
202
203
203
/// <summary>
204
-
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server, overriding any values that may have been set in <see cref="ProxyLogin"/> and <see cref="ProxyPassword"/>.
204
+
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server.
205
205
/// </summary>
206
-
/// <remarks>Only applies when <see cref="UseWebSockets"/> = <see langword="true"/></remarks>
206
+
/// <remarks>Only applies when <see cref="UseWebSockets"/> = <see langword="true"/>. Take precedence over <see cref = "ProxyLogin" /> and <see cref="ProxyPassword"/> when set to <see langword="true"/>.</remarks>
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureEventHub/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ _proxyLogin_ - Login to use for the proxy server. Requires `proxyPassword`. Requ
88
88
89
89
_proxyPassword_ - Password to use for the proxy server. Requires `proxyLogin`. Requires `useWebSockets = true`.
90
90
91
-
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server. Requires `useWebSockets = true`.
91
+
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server. Take precedence over `proxyLogin` and `proxyPassword` when set to `true`. Requires `useWebSockets = true`.
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureQueueStorage/QueueStorageTarget.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -126,8 +126,9 @@ public sealed class QueueStorageTarget : AsyncTaskTarget
126
126
publicLayoutProxyPassword{get;set;}
127
127
128
128
/// <summary>
129
-
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server, overriding any values that may have been set in <see cref="ProxyLogin"/> and <see cref="ProxyPassword"/>.
129
+
/// Uses the default credentials (<see cref="System.Net.CredentialCache.DefaultCredentials"/>) for the proxy server.
130
130
/// </summary>
131
+
/// <remarks>Take precedence over <see cref = "ProxyLogin" /> and <see cref="ProxyPassword"/> when set to <see langword="true"/>.</remarks>
Copy file name to clipboardExpand all lines: src/NLog.Extensions.AzureQueueStorage/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ _proxyLogin_ - Login to use for the proxy server. Requires `proxyPassword`.
67
67
68
68
_proxyPassword_ - Password to use for the proxy server. Requires `proxyLogin`.
69
69
70
-
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server.
70
+
_useDefaultCredentialsForProxy_ - Uses the default credentials (`System.Net.CredentialCache.DefaultCredentials`) for the proxy server. Take precedence over `proxyLogin` and `proxyPassword` when set to `true`.
0 commit comments