From 0b90943b506c4623a1d102a94f370e18b0ef4317 Mon Sep 17 00:00:00 2001 From: Cole Date: Sat, 5 Aug 2023 14:16:42 -0700 Subject: [PATCH] OnSendFailedEventArgs: data -> message rename --- src/TwitchLib.Communication/Events/OnSendFailedEventArgs.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/TwitchLib.Communication/Events/OnSendFailedEventArgs.cs b/src/TwitchLib.Communication/Events/OnSendFailedEventArgs.cs index 51f41d2..4b0c4c9 100644 --- a/src/TwitchLib.Communication/Events/OnSendFailedEventArgs.cs +++ b/src/TwitchLib.Communication/Events/OnSendFailedEventArgs.cs @@ -2,13 +2,13 @@ public class OnSendFailedEventArgs : EventArgs { - public string Data { get; } + public string Message { get; } public Exception Exception { get; } - public OnSendFailedEventArgs(Exception exception, string data) + public OnSendFailedEventArgs(Exception exception, string message) { Exception = exception; - Data = data; + Message = message; } }