Skip to content

Commit 4ca3ce0

Browse files
committed
Removed deprecated EnableSSL Property.
@ejsmith I left it in the config section as removing it could blow up any existing clients...
1 parent 5b9e384 commit 4ca3ce0

File tree

3 files changed

+2
-17
lines changed

3 files changed

+2
-17
lines changed

src/Exceptionless.Tests/Submission/DefaultSubmissionClientTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
// return new ExceptionlessClient(c => {
2929
// c.ApiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw";
3030
// c.ServerUrl = Settings.Current.BaseURL;
31-
// c.EnableSSL = false;
3231
// c.UseDebugLogger();
3332
// });
3433
// }

src/Exceptionless/Configuration/ExceptionlessAttribute.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,7 @@ public ExceptionlessAttribute(string apiKey) {
2626
/// </summary>
2727
/// <value>The API key.</value>
2828
public string ApiKey { get; set; }
29-
30-
/// <summary>
31-
/// Gets or sets if SSL should be used.
32-
/// </summary>
33-
/// ///
34-
/// <value><c>true</c> to enable SSL; otherwise, <c>false</c>.</value>
35-
[ObsoleteAttribute("This property will be removed in a future release.")]
36-
public bool EnableSSL { get; set; }
37-
29+
3830
/// <summary>
3931
/// Gets or sets if reporting is enabled.
4032
/// </summary>

src/Exceptionless/Configuration/ExceptionlessConfiguration.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,7 @@ public string ApiKey {
125125
/// Whether the client is currently enabled or not. If it is disabled, submitted errors will be discarded and no data will be sent to the server.
126126
/// </summary>
127127
public bool Enabled { get; set; }
128-
129-
/// <summary>
130-
/// Whether or not the client should use SSL when communicating with the server.
131-
/// </summary>
132-
[ObsoleteAttribute("This property will be removed in a future release.")]
133-
public bool EnableSSL { get; set; }
134-
128+
135129
/// <summary>
136130
/// Maximum time (provided in days) that the queue will persist events
137131
/// </summary>

0 commit comments

Comments
 (0)