Switched several members to internal
This commit is contained in:
@@ -9,7 +9,7 @@ using WSSharpNWebSocket = WebSocketSharp.WebSocket;
|
|||||||
|
|
||||||
namespace Discord.WebSockets
|
namespace Discord.WebSockets
|
||||||
{
|
{
|
||||||
public class WSSharpWebSocketEngine : IWebSocketEngine
|
internal class WSSharpWebSocketEngine : IWebSocketEngine
|
||||||
{
|
{
|
||||||
private readonly ConcurrentQueue<string> _sendQueue;
|
private readonly ConcurrentQueue<string> _sendQueue;
|
||||||
private readonly int _sendInterval;
|
private readonly int _sendInterval;
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
using Discord.Helpers;
|
using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Runtime.ExceptionServices;
|
using System.Runtime.ExceptionServices;
|
||||||
using System.Text;
|
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@@ -18,7 +16,7 @@ namespace Discord.WebSockets
|
|||||||
Disconnecting
|
Disconnecting
|
||||||
}
|
}
|
||||||
|
|
||||||
public class WebSocketMessageEventArgs : EventArgs
|
internal class WebSocketMessageEventArgs : EventArgs
|
||||||
{
|
{
|
||||||
public readonly string Message;
|
public readonly string Message;
|
||||||
public WebSocketMessageEventArgs(string msg) { Message = msg; }
|
public WebSocketMessageEventArgs(string msg) { Message = msg; }
|
||||||
|
|||||||
Reference in New Issue
Block a user